* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-wrapper {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Esquerda com imagem */
.left-panel {
    flex: 1;
    background-color: #004b34;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.left-panel h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}
.left-panel h3 {
  margin-top: 1rem;
    font-size: 16px;
    color: #e0f2f1;
    max-width: 100%;
    text-align: center;
}
.left-panel img {
    max-width: 60%;
    max-height: 60%;
    object-fit: cover;
    margin-bottom: 4rem;
    margin-top: 9rem;
}

/* Direita com login */
.right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e6e3e3;
}

.right-panel img {
    display: flex;
    justify-content: flex-end;
    width: 15%;
    padding: 3rem;
    position: absolute  ;
    top: 0;
    right: 0;

}

.login-container {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 64, 51, 0.1);
    width: 100%;
    max-width: 400px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form h2 {
    text-align: center;
    color: #00694f;
    margin-bottom: 30px;
}

.login-form label {
    margin-bottom: 6px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.login-form input {
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-form input:focus {
    border-color: #004b34;
    outline: none;
}

.login-form button {
    background-color: #00785a;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.login-form button:hover {
    background-color: #018b69;
}

.error-messages {
    background-color: #ffd5d5;
    color: #a70000;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

/* Privacy Policy Checkbox Styles */
.privacy-policy-container {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #00785a;
    border-color: #00785a;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label:hover .checkmark {
    border-color: #00785a;
}

.checkbox-text {
    flex: 1;
}

.privacy-link {
    color: #00785a;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Disabled button state */
.login-form button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.login-form button:disabled:hover {
    background-color: #ccc;
}