.auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0
}

    .auth a, .auth h1, .auth h2, .auth h3, .auth h4, .auth h5, .auth h6, .auth label, .auth p, .auth span {
        color: #5e5873;
        font-family: Montserrat,sans-serif;
        font-weight: 500
    }

    .auth a {
        color: #1D7B9D;
        font-size: 13px
    }

    .auth label {
        font-size: 13px;
        margin-bottom: .25rem
    }

    .auth .form-group {
        margin-bottom: 1rem;
        position: relative
    }

    .auth p {
        font-size: 15px
    }

    .auth .btn-eye {
        position: absolute;
        right: 0;
        top: 3px;
        background-color: transparent;
        border: none;
        color: rgba(0,0,0,.25)
    }

        .auth .btn-eye:focus, .auth .btn-eye:hover {
            background-color: transparent;
            color: rgba(0,0,0,.75)
        }

    .auth.auth__form-left .auth__image {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .auth.auth__form-left .auth__form {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .auth.auth__form-left .auth__logo-form {
        margin-left: auto;
        margin-right: auto;
        display: block
    }

    .auth.auth__form-left .auth__title {
        text-align: center;
        margin-bottom: 3rem
    }

.auth__logo-form {
    max-width: 300px
}

.auth__image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #f8f8f8;
    height: 100%;
    position: relative;
    background-position: 50%;
    background-size: auto;
    background-repeat: no-repeat
}

.auth__form {
    height: 100%;
    width: 33%;
    background-color: #fff;
    padding: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,.5);
    box-shadow: 0 0 8px rgba(0,0,0,.5)
}

    .auth__form form {
        width: 100%
    }

.auth__title {
    font-size: 1.5rem;
    color: #5e5873;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase
}

.btn-signin {
    background-color: #1D7B9D;
    font-family: Montserrat,sans-serif;
    font-weight: 600;
    color: #fff
}

.auth__logo {
    position: absolute;
    max-width: 150px
}

    .auth__logo.top-left {
        left: 30px;
        top: 30px
    }

    .auth__logo.top-right {
        right: 30px;
        top: 30px
    }

    .auth__logo.bottom-left {
        left: 30px;
        bottom: 30px
    }

    .auth__logo.bottom-right {
        right: 30px;
        bottom: 30px
    }

.auth__bg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%
}

.auth__social {
    margin-top: 80px
}

    .auth__social, .auth__social a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

        .auth__social a {
            width: 34px;
            height: 34px;
            margin: 0 .5rem;
            background-color: #1D7B9D;
            border-radius: 50%;
            color: #fff;
            -webkit-transition: all .15s linear;
            transition: all .15s linear
        }

            .auth__social a:hover {
                text-decoration: none;
                background-color: #3321e9
            }

@media (max-width:1024px) {
    .auth__image {
        background-size: contain
    }

    .auth__form {
        width: 45%
    }
}

@media (max-width:800px) {
    .auth__image {
        display: none
    }

    .auth__form {
        padding-left: 2rem;
        padding-right: 2rem;
        min-height: 500px;
        overflow-y: auto;
        max-width: 100%;
        width: 100%
    }

    .auth__logo-form {
        display: block
    }
}
/*# sourceMappingURL=auth.css.map*/


.auth__form {
    background: #ffffff;
    /*border-radius: 16px;*/
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

.form-control {
    border-radius: 12px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

    .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
    }
.btn-signin {
    background: #EA2151; /* fondo rosa sólido */
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

    .btn-signin:hover {
        background: #1E2C51; /* azul oscuro al hover */
        color: white;
    }

    .btn-signin:focus,
    .btn-signin:active {
        background: #002244; /* azul aún más oscuro en foco/activo */
        color: #EA2151; /* texto rosa para contraste */
        outline: none;
    }


.auth__logo-form {
    animation: fadeInDown 0.8s ease-in-out;
}

.alert-danger {
    border-radius: 10px;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}