.login-container {
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.left-side, .right-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.left-side {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(180deg, #001C3A 0%, #034079 100%);
    padding: 20px 0;
}


.left-side-development {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(117deg,rgba(15, 58, 66, 1) 0%, rgba(53, 133, 102, 1) 60%, rgba(87, 199, 133, 1) 100%, rgba(127, 205, 120, 1) 100%);
    padding: 20px 0;
}




.left-side-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15%;
    padding-left: 80px;
}

.left-text-heading {
    line-height: 1;
    font-size: 72px;
    color: white;
}

.left-subText {
    line-height: 1;
    font-size: 20px;
    font-weight: 300;
    color: #FFD12D;
}

.left-side-system {
    text-align: center;
}

.left-system-suint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.left-suint-text-acronin {
    font-size: 22px;
    font-weight: 400;
    color: white;
}

.left-suint-name {
    font-size: 14px;
    color: white;
    font-weight: 300;
    letter-spacing: 0.2em;
}

.right-side {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 80px 0 80px 0;
}

.logo-uab-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

    .logo-uab-container hr {
        width: 40%;
        border: none;
        height: 1px;
        background-color: #002E66;
    }

.logo-uab {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.login-uab-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

.logo-uab-line {
    width: 3px;
    height: 90%;
    background-color: #FFD12D;
}

.logo-uab-brand {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

    .logo-uab-brand h1, span {
        line-height: 1;
        color: #002E66;
    }

.credential {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welcome-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    margin-bottom: 14px;
}

    .welcome-title h1 {
        line-height: 1;
        font-size: 30px;
        color: #002E66;
    }

    .welcome-title h3 {
        line-height: 1;
        font-size: 16px;
        font-weight: 400;
        color: #002E66;
    }

    .welcome-title .msg-text {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 0.2rem;
        line-height: 1;
    }

.credential-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

    .credential-form .form-email {
        display: flex;
        flex-direction: column;
        gap: 2px;
        position: relative;
    }

        .credential-form .form-email span {
            width: 100%;
            right: 0;
            font-size: 14px;
            color: #fa6060;
            position: absolute;
            bottom: -8px;
        }

    .credential-form .form-password {
        display: flex;
        flex-direction: column;
        position: relative;
    }

        .credential-form .form-password span {
            width: 100%;
            right: 0;
            font-size: 14px;
            color: #fa6060;
            position: absolute;
            bottom: -8px;
        }

    .credential-form label {
        font-size: 0.95rem;
        font-weight: 500;
        color: #002E66;
        margin-bottom: 0.3rem;
        line-height: 1;
    }

    .credential-form input[type="text"],
    .credential-form input[type="email"],
    .credential-form input[type="password"] {
        background-color: #f8f9fc;
        border: 1px solid #c0c4cc;
        padding: 0.6rem 0.9rem;
        font-size: 1rem;
        color: #001C3A;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .credential-form input:focus {
        border-color: #0B58A0;
        box-shadow: 0 0 0 2px rgba(11, 88, 160, 0.15);
        outline: none;
    }

    .credential-form .form-check {
        display: flex;
        align-items: center;
        gap: 0.2rem;
        font-size: 0.9rem;
        color: #002E66;
    }

.btn-action {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.credential-form button,
.credential-form .login-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .credential-form button[type="submit"] {
        background-color: #002E66;
        color: white;
        border: none;
    }

        .credential-form button[type="submit"]:hover {
            background-color: #0B58A0;
        }

/* Botón de Google */
.credential-form .login-google {
    background-color: white;
    color: #3c4043;
    border: 1px solid #dadce0;
}

    .credential-form .login-google:hover {
        background-color: #f7f7f7;
    }

/* Botón de Google */
.login-google-form .login-google {
    background-color: white;
    color: #3c4043;
    border: 1px solid #dadce0;
}

    .login-google-form .login-google:hover {
        background-color: #f7f7f7;
    }




.credential-form button[type="submit"]:hover {
    background-color: #0B58A0;
}

.credential-register p > a {
    font-size: 16px;
    color: #0B58A0;
    line-height: 1;
}

.credential-ti h1 {
    text-align: center;
    font-weight: 300;
    font-size: 12px;
    color: gray;
    line-height: 1;
}

.content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 820px) {
    .login-container {
        background-color: #f4f8fd;
        grid-template-columns: 1fr;
    }

    .left-side {
        display: none;
    }

    .right-side {
        width: 100%;
        padding: 40px 20px;
        justify-content: space-between;
    }

    .welcome-title h1 {
        font-size: 28px;
    }

    .welcome-title h3 {
        font-size: 15px;
    }

    .welcome-title .msg-text {
        font-size: 12px;
    }

    .credential-ti h1 {
        text-align: center;
        font-weight: 300;
        font-size: 10px;
        color: gray;
        line-height: 1;
    }

    .logo-uab-container hr {
        width: 90%;
    }
}
