/* ==========================================
   LOGIN-STYLES.CSS - SIN ROOT DUPLICADO
   ========================================== */


.login-page {
    min-height: 95vh;
    background-image: url("../img/background.webp");
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/caja_registro.webp");
    background-size: cover;
    border-radius: 25px;
    padding: 2%;
    height: 630px;
    width: 450px;
    position: relative;
    flex-direction: column;
}

form.text-center{
    margin-top: 200px !important;
}

.form-container .btn-primary {
    background-color: var(--secondary);
    letter-spacing: 1px;
}

.form-control {
    width: 270px;
    margin-bottom: 20px;
}

.form-control:focus {
    -webkit-box-shadow: inset 0 0 0 2px var(--primary) !important;
    box-shadow: inset 0 0 0 2px var(--primary) !important;
}

#email {
    border: solid black 1px !important;
}

.form-container .btn {
    text-align: center;
    width: 145px;
    margin-top: 20px;
}

.form-container .links {
    width: 270px;
    margin-top: 10px;
    color: #19233f;
}

.links a, .links a:hover, .links a:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

@media (max-width: 975px) {
    .login-page {
        background-position: bottom !important;
    }
    .form-container .btn {
        text-align: center;
        width: 145px;
        margin-top: 0px !important;
    }
    
    .form-container .links {
        width: 270px;
        margin-top: 0px !important;
        color: #19233f;
    }
}

@media (max-width: 450px) {
    .form-container {
        width: 350px;
        height: 480px;
    }
    .login-page {
        background-position: bottom !important;
    }

    .form-control {
        width: 100%;
    }

    .form-container .btn {
        width: 100%;
    }

    .form-container .links {
        font-size: 14px;
    }

    .form-container .links .text-center {
        margin-bottom: 10px !important;
    }
}