* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Calibri, sans-serif;
}




a:hover {
    text-decoration: underline;
}

.login-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

/* Principal Content */
.login-content {
    display: flex;
    flex: 1;
    width: 100%;
    
}

/* Left Side */
.login-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 70px;
    width: 45%;
    min-width: 300px;
    background-color: #ffffff;
    gap: 60px;
}

.login-content-left .content {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo-eva{
    justify-content: left;
}

.logo-eva img {
    height: 10vw;
    max-height: 90px;
}

/* Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
}

label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

input {
    height: 45px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}

.login-btn {
    height: 45px;
    width: 100%;
    border: none;
    border-radius: 5px;
    background-color: #00263e;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #004080;
}

.recsenha {
    font-size: 14px;
    color: #003e64;
    text-decoration: none;
    text-align: right;
    margin-top: 10px;
}

.recsenha:hover {
    text-decoration: underline;
}

.validation-summary-errors {
    color: red;
    font-size: 14px;
}

/* Right Side */
.login-content-right {
    flex: 1;
    background-image: url('IMAGEM_INICIAL_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 50px;
    color: white;
    font-size: 4.5rem;
    text-align: right;
    font-weight: lighter;
}

/* Footer */
.login-footer {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    background-color: #dee2e6;
    padding: 15px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: center;
    gap: 10px;
    flex-grow: 1;
}

.footer-links {
    display: flex;
    gap: 5vw; 
    flex-wrap: wrap;
}

.footer-links a {
    color: #003e64;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom {
    font-size: 12px;
    color: #333;
}

.footer-logo img {
    height: 60px;
    width: auto;
}


/* Responsive */

@media screen and (max-width: 1200px) {
    .login-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 350px;
    }

    .login-content {
        flex-direction: column;
        flex-grow: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 5vh 5vw;
    }

    .login-content-right {
        display: none;
    }

    .login-content {
        background-image: url('IMAGEM_INICIAL_2.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .login-content-left {
        width: 100%;
        max-width: 600px; 
        padding: 3vh 40px;
        padding-bottom: 0px;
        gap: 30px;
        flex-grow: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
        border-radius: 5px;
    }

    .login-content-left .logo-eva{
        justify-content: start;
        align-self: start;
    }

    .login-content-left .logo-eva img {
        height: 60px;
    }
    

    /* Footer */
    .login-footer {
        width: 100%;
        max-width: 100%;
        padding: 10px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex-shrink: 0;
        background-color: #dee2e6;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 3px;
        width: 100%;
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1vw;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-bottom {
        width: 100%;
        text-align: center;
        font-size: 10px; 
    }

    .footer-logo {
        margin-left: 0;
        margin-top: 5px;
        height: 45px; 
    }

    .footer-logo img {
        height: 100%;
    }
}
