* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background-color: #f5f5f5; display: flex; justify-content: center; align-items: center; height: 100vh; }
.login-container { width: 100%; max-width: 400px; padding: 20px; }
.login-box { background-color: #ffffff; padding: 40px 30px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); text-align: center; }
.logo-login { width: 100%; max-width: 240px; height: auto; margin-bottom: 5px; }
.login-box p { color: #666666; margin-bottom: 30px; font-size: 14px; font-weight: 400; }
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; margin-bottom: 8px; color: #000000; font-weight: 600; font-size: 14px; }
.input-group input { width: 100%; padding: 12px; border: 1px solid #d1d1d1; border-radius: 4px; font-size: 14px; transition: border-color 0.3s; }
.input-group input:focus { border-color: #000000; outline: none; }
button { width: 100%; padding: 14px; background-color: #000000; color: #ffffff; border: none; border-radius: 4px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background-color 0.3s, transform 0.1s; }
button:hover { background-color: #333333; }
button:active { transform: scale(0.98); }
.error-message { color: #d32f2f; margin-top: 15px; font-size: 14px; min-height: 20px; font-weight: 600; }
.forgot-password { margin-top: 15px; text-align: center; }
.forgot-password a { color: #666; font-size: 13px; font-weight: 600; text-decoration: none; }
.forgot-password a:hover { color: #000; text-decoration: underline; }

/* Modais */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 1000; justify-content: center; align-items: center; }
.modal-overlay.active { display: flex; }
.modal-content { background-color: #fff; padding: 30px; border-radius: 8px; width: 90%; max-width: 400px; text-align: left; }
.modal-content h2 { margin-bottom: 10px; font-size: 18px; }
.modal-content p { color: #666; font-size: 14px; margin-bottom: 20px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn-outline { background-color: transparent; border: 1px solid #000; color: #000; }
.btn-outline:hover { background-color: #f5f5f5; }
.termos-texto { background-color: #f9f9f9; padding: 15px; border: 1px solid #eee; border-radius: 4px; font-size: 13px; color: #444; line-height: 1.6; margin-bottom: 15px; }