/* Tela de Login */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(to bottom, #a5beef, #e6eeff);
    font-family: Arial, sans-serif;
    padding: 20px;
}

.login-container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.logo-section {
    flex: 1;
    background-color: #adc2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.logo-section img {
    max-width: 80%;
    max-height: 300px;
}

.form-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section h2 {
    font-size: 28px;
    color: #4d79ff;
    margin-bottom: 20px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

form input {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
}

form button {
    padding: 15px;
    background-color: #4d79ff;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #1e3cff;
}

/* Responsividade */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .logo-section {
        padding: 20px;
    }

    .form-section {
        padding: 20px;
    }
}
