/* CONTENEDOR GENERAL */
.login-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* FORMULARIO */
.login-form-container {
    width: 45%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-form {
    width: 100%;
    max-width: 380px;
}

.login-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 35px;
}

/* INPUTS ESTILO V18 */
.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-field {
    width: 100%;
    padding: 15px 5px;
    border: none;
    border-bottom: 2px solid #c7c7c7;
    background: transparent;
    font-size: 16px;
    outline: none;
}

.input-label {
    position: absolute;
    left: 5px;
    top: 15px;
    font-size: 16px;
    color: #777;
    transition: 0.3s;
}

.input-field:focus + .input-label,
.input-field:not(:placeholder-shown) + .input-label {
    top: -10px;
    font-size: 13px;
    color: #37C2CC;
}

/* RECORDAR */
.remember-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
}

.forgot-link {
    color: #37C2CC;
}

/* BOTÓN LOGIN */
.login-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

/* IMAGEN DERECHA */
.login-image-container {
    width: 55%;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.login-image-container .overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
    }
    .login-form-container {
        width: 100%;
    }
    .login-image-container {
        display: none;
    }
}
/* IMAGEN DERECHA */
.register-image-container {
    width: 55%;
    background-image: url('bgr.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.register-image-container .overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .register-container {
        flex-direction: column;
    }
    .register-form-container {
        width: 100%;
    }
    .register-image-container {
        display: none;
    }
}
.back-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;

    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;

    background: rgba(0, 0, 0, 0.4);
    padding: 10px 18px;
    border-radius: 8px;
    backdrop-filter: blur(4px);

    transition: 0.3s;
}

.back-btn:hover {
    background: #37C2CC;
    color: #fff;
    padding-left: 22px;
}
