.hero-account .bg-desktop {
    display: none;
    z-index: -1;
}
.hero-account .bg-mobile,
.hero-account .bg-desktop  {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#hero.hero-account .hero-text {
    position: static;
}
.hero-image {
    display: none;
}
.hero-account .text h1 {
    font-size: 40px;
    font-weight: 500;
    color: var(--clr-primary);
}
.hero-account .text p {
    font-size: 28px;
    color: var(--clr-primary);
}
form {
    margin: 0;
    padding: 16px;
    background-color: var(--clr-light);
    border-radius: 16px;
    width: 100%;
}

@media(min-width: 768px){
    form {
        width: 560px;
    }
    #form-contact {
        width: 100%;
    }
    .hero-text {
        width: 660px;
        margin-left: -20px;
    }
}

form label {
    display: block;
    padding-bottom: 10px;
    font-size: 14px;
    color: var(--clr-default);
}
form input[type="text"],
form input[type="email"],
form input[type="password"]{
    width: 100%;
    height: 44px;
    font-size: 16px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
}
form textarea {
    width: 100%;
    font-size: 16px;
    min-height: 150px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
}
.input-content {
    margin-bottom: 10px;
}
.form-note {
    font-size: 14px;
    line-height: 24px;
    color: var(--clr-default);
    margin-bottom: 10px;
}
.form-note a {
    font-weight: 600;
    color: var(--clr-secondary);
    text-decoration: underline;
}
.btn-app-content {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 10px;
}
.btn-app-content a {
    flex: 1;
}
.btn-submit {
    width: 100%;
    display: inline-block;
    padding: 16px 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    background-color: var(--clr-secondary);
    border: 0;
    margin-bottom: 10px;
}
.form-content {
    background-image: url('../images/hero-mobile-full.png');
    background-size: cover;
}
.form-error, .form-success  {
    margin-bottom: 16px;
    margin-top: 2px;
}
.form-error p {
    color: red;
    font-size: 14px;
}
.form-success p {
    color: green;
}
.modal-components {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #00000070;
}
.modal-components.open {
    display: flex;
}
.modal-components  .modal-contet {
    background-color: #fff;
    min-width: 600px;
    min-height: 150px;
    padding: 50px 24px 20px 24px;
    border-radius: 10px;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 20px;
    cursor: pointer;
}
@media(min-width: 768px){
    .input-content.is-half {
        width: calc(50% - 8px);
        float: left;
    }
    .input-content.is-half.is-first {
        margin-right: 16px;
    }
}
@media(max-width: 991px){
    .hero-account  {
        padding: 16px 0 0 0 ;
    }
    .hero-account .text {
        text-align: center;
        padding-bottom: 15px;
    }
    .hero-account .form-content {
        padding: 16px 20px;
    }
    .hero-account .bg-mobile img {
        object-fit: cover;
        height: 100%;
        object-position: center;
    }
    .hero-account .text, 
    .hero-account .text p {
        color: var(--clr-primary);
    }
    .form-error p ,
    .form-success p {
        text-align: center;
    }
}
@media(min-width: 992px){
    .hero-account {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 var(--col-gap);
        border-radius: var(--border-box);
        overflow: auto;
        background-size: cover;
        background-position: center;
        background-image: url('../images/hero-desktop-full.png');
        margin-bottom: var(--col-gap);
    }
    .hero-account > div:first-child {
        margin: 40px 0 ;
    }
    .hero-account h1,
    .hero-account p {
        text-shadow: 4px 4px 0 #00000025
    }
    .hero-image {
        display: flex;
        padding: 10px 55px 0 10px;
        height: 100%;
        align-self: end;
        max-width: 680px;
    }
    .hero-account .hero-text .text,
    .form-content {
        background-image: none;
        padding-left: 66px;
    }
    .form-content {
        max-width: 560px;
        box-sizing: content-box;
    }
    .hero-account .text h1 {
        font-size: 40px;
    }
    .hero-account .text h1,
    .hero-account .text p {
        color: #fff;
    }
    .hero-account .bg-mobile {
        display: none;
    }
    .hero-account .bg-desktop {
        display: block;
    }
}
@media(min-width: 1200px){
    .hero-account {
        min-height: 668px;
    }
    .hero-account .text {
        padding-top: 20px;
    }
    .hero-account .text h1 {
        font-size: 70px;
        line-height: 68px;
    }
    .hero-account .text p {
        font-size: 32px;
        line-height: 40px;
    }
}