body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
}
.login-page-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}
.panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}
.panel-left {
    background-color: #00A3AD;
}
.panel-left img {
    max-width: 60%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.panel-right {
    background-color: #ffffff;
}
.login-form-container {
    width: 100%;
    max-width: 380px;
    text-align: center;
}
.form-logo {
    max-width: 400px; *- Teste *-
    margin-bottom: 80px;
}
.input-group {
    margin-bottom: 25px;
    text-align: left;
}
.input-group label {
    display: block;
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}
.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f7f7f7;
    color: #333;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-group input:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}
button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #00A3AD;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #006F79;
}
.error-message {
    color: #e74c3c;
    margin-top: 20px;
    height: 20px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .login-page-container {
        flex-direction: column;
    }
    .panel-left {
        display: none;
    }
}