.content.voltar-ao-topo, .container {
    padding: 0 !important;
    margin: 0 !important;
}
body {
    background-color: #0F173D;
    color: #000;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-y: hidden;
}

.alert {
    border: none;
    border-radius: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 2;
    top: 0;
    padding: 1.6rem;
    animation: slide-in 0.5s;
}
.alert-danger {
    background-color: #d82845 !important;
}
.alert-warning {
    background-color: #f88d28 !important;
}

.close {
    float: right;
    margin-right: 5.6rem;
    text-shadow: none;
    color: #fff !important;
    opacity: 1 !important;
}

@keyframes slide-in {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

.info{
    background-color: #2762D4;
    padding: 16px;
    text-align: center;
    width: 100vw;
    font-weight: 500;
    position: absolute;
    top: 0;
}
.info .text-info{
    color: #fff;
    font-size: 1.4rem;
    margin: 0 !important;
}

#body-content {
    height: 100vh;
    width: 100vw;
}

.call-to-action {
    display: flex;
    flex-direction: column;
    padding-left: 10rem;
    justify-content: center;
    height: 100vh;
}

.call-to-action h1 {
    font-size: 7.2rem;
    font-weight: 700;
    color: #fff
}

.call-to-action p {
    font-size: 2rem;
    font-weight: 400;
    color: #8F94A8;
    max-width: 80%;
}

#stores {
    display: flex;
    flex-direction: row;
    gap: 1.6rem;
    margin-top: 2.4rem;
}

#stores a {
    transition: all .4s ease;
}

#stores a:hover {
    transform: scale(1.1);
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

#form-content {
    background-color: #fff;
    max-width: 36rem;
    padding: 2.8rem;
    border-radius: 1rem;
}

#form-content h1{
    font-size: 3.2rem;
    font-weight: 700;
    color: #0F173D;
}

#form-content .form-fields label{
    color: #72728F;
    font-weight: 500;
    font-size: 1.4rem;
}

#form-content .form-fields .form-control{
    -webkit-box-shadow: none;
    color: #334155;
    font-weight: 600;
    padding-left: 1.6rem;
    height: 4.8rem;
    border-radius: 0.6rem;
    border: 2.2px solid #e2e8f0;
    background-color: #f8fafc;
}

#form-content .form-fields .form-control:focus{
    border: 2px solid #2762D4;
    background-color: #fff;
}

#form-content .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2.4rem;
}

#form-content .form-buttons button {
    height: 4.8rem;
    outline: none;
    border: none;
    border-radius: 0.4rem;
}

#form-content .form-buttons .primary {
    background-color: #2762D4;
    color: #fff;
    font-weight: 500;
    transition: all .4s;
}

#form-content .form-buttons .primary:hover {
    background-color: #5989e9;
}

#form-content .form-buttons .primary:focus {
    background-color: #0055ff;
}

#form-content .form-buttons .secondary {
    background-color: #ECF0FB;
    color: #05070C;
    font-weight: 500;
    width: 100%;
    transition: all .4s;
}

#form-content .form-buttons .secondary:hover {
    background-color: #cbd5e1;
}

@media screen and (max-width: 480px){

    body {
        overflow-y: auto;
    }
    .info {
        position: fixed;
        z-index: 1;
    }
    .call-to-action {
        padding: 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    .call-to-action h1 {
        font-size: 4.8rem;
        font-weight: 700;
        color: #fff
    }

    .form {
        align-items: center;
        height: fit-content;
        margin-top: -10rem;
        padding-bottom: 5.6rem;
    }
    
    #form-content {
        width: 90%;
    }
} 

@media screen and (min-width: 768px) and (max-width: 1200px){
    body {
        overflow-y: auto;
    }
    .info {
        position: fixed;
        z-index: 1;
    }
    .call-to-action {
        margin-top: 10rem;
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        align-items: center;
        height: fit-content;
    }
    .call-to-action h1 {
        font-size: 7.2rem;
        font-weight: 700;
        color: #fff
    }
    .call-to-action p {
        width: 60%;
    }

    .form {
        align-items: center;
        height: fit-content;
        margin-top: 4rem;
        padding-bottom: 5.6rem;
    }
    
    #form-content {
        width: 60%;
    }
} 