/* Fundo suave em gradiente */
body {
    margin: 0;
    background: linear-gradient(135deg, #4db6e6, #6ee7b7);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

/* Container principal */
.login-container {
    width: 100%;
    max-width: 1100px;
    background: white;
    border-radius: 18px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Lado esquerdo */
.login-left {
    flex: 1.3;
    background: rgb(241, 252, 255);
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.illustration {
    width: 70%;
    margin-bottom: 20px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 700;
    color: #2b7bbf;
}

.welcome-subtitle {
    color: #477f77;
    font-size: 16px;
}

/* Lado direito */
.login-right {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 35px;
    border-radius: 14px;
}

.input-custom {
    height: 45px;
    border-radius: 10px;
}

.login-btn {
    background-color: #3ba8e0;
    border: none;
    height: 45px;
    border-radius: 10px;
    font-size: 16px;
}

.login-btn:hover {
    background-color: #298ec4;
}

.forgot-link {
    font-size: 14px;
    color: #3b7f9b;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .login-left {
        display: none;
    }
    .login-card {
        margin-top: 20px;
    }
}
