/* =========================================================
   VERMON LOGIN
========================================================= */

.vermon-login {

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 255, 120, .08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(0, 140, 255, .10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #020b12,
            #0a1d28,
            #071722
        );

    color: #063b60;

}


/* =========================================================
   CONTENEDOR
========================================================= */

.vermon-login-container {

    max-width: 900px;

    width: 100%;

    border-radius: 12px;

}


/* =========================================================
   LOGIN IZQUIERDO
========================================================= */

.vermon-login-card {

    background: #ffffff;

    border: 0;

    min-height: 520px;

}


.vermon-login-card .card-body {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


/* =========================================================
   LOGO
========================================================= */

.vermon-login-logo {

    max-width: 300px;

    max-height: 100px;

    object-fit: contain;

}


.vermon-login-card h3 {

    color: #063b60;

    font-weight: 600;

}


.login-subtitle {

    color: #788994;

    font-size: 13px;

    margin-top: 8px;

}


/* =========================================================
   INPUTS
========================================================= */

.vermon-login-card .input-group-text {

    width: 45px;

    justify-content: center;

    background: #f4f7f9;

    border-color: #dce4e9;

    color: #0e87e5;

}


.vermon-login-card .form-control {

    height: 46px;

    border-color: #dce4e9;

    font-size: 14px;

}


.vermon-login-card .form-control:focus {

    border-color: #0e87e5;

    box-shadow:
        0 0 0 .15rem
        rgba(14,135,229,.12);

}


/* =========================================================
   BOTÓN
========================================================= */

.vermon-login-button {

    height: 46px;

    border: 0;

    background:
        linear-gradient(
            90deg,
            #0e87e5,
            #0871bd
        );

    font-weight: 600;

    box-shadow:
        0 5px 15px
        rgba(14,135,229,.20);

}


.vermon-login-button:hover {

    background:
        linear-gradient(
            90deg,
            #087bd0,
            #075fa0
        );

}


/* =========================================================
   OLVIDASTE
========================================================= */

.vermon-forgot {

    font-size: 12px;

    color: #0e87e5;

    white-space: nowrap;

}


.vermon-forgot:hover {

    text-decoration: none;

    color: #075fa0;

}


/* =========================================================
   ERROR
========================================================= */

.login-error {

    min-height: 22px;

    color: #dc3545;

    font-size: 12px;

    margin-bottom: 5px;

}


/* =========================================================
   LATERAL
========================================================= */

.vermon-login-side {

    border: 0;

    background:
        linear-gradient(
            145deg,
            #0e87e5,
            #075d9d
        );

    color: #ffffff;

    min-height: 520px;

    position: relative;

    overflow: hidden;

}


/* efecto tecnológico */

.vermon-login-side::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,.10);

    top: -150px;

    right: -100px;

}


.vermon-login-side::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,.07);

    bottom: -250px;

    left: -150px;

}


.vermon-login-side .card-body {

    position: relative;

    z-index: 2;

}


.vermon-side-logo {

    max-width: 130px;

    max-height: 110px;

    object-fit: contain;

}


.vermon-login-side h4 {

    font-weight: 600;

}


.vermon-login-side p {

    max-width: 300px;

    font-size: 13px;

    line-height: 1.7;

    opacity: .9;

}


/* =========================================================
   OFERTAS
========================================================= */

.vermon-offer-button {

    padding: 11px 22px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 600;

    color: #075d9d;

    border: 0;

}


/* =========================================================
   CHECKBOX
========================================================= */

.vermon-login-card .form-check-label {

    font-size: 12px;

    color: #667985;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .vermon-login-container {

        flex-direction: column;

    }


    .vermon-login-card,
    .vermon-login-side {

        min-height: auto;

    }


    .vermon-login-side {

        padding: 30px 0;

    }


    .vermon-login-logo {

        max-width: 240px;

    }


    .vermon-forgot {

        font-size: 11px;

    }

}