body { font-family: 'Inter', sans-serif; background: #f3f4f6; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; }
.card { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); width: 100%; max-width: 400px; }
h2 { color: #1e3a8a; text-align: center; margin-bottom: 5px; }
p { text-align: center; color: #64748b; font-size: 13px; margin-bottom: 25px; margin-top: 5px; }
input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #cbd5e1; border-radius: 6px; box-sizing: border-box; font-family: inherit; }
input:focus { border-color: #2563eb; outline: none; }
button { width: 100%; padding: 12px; background: #2563eb; color: white; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; transition: 0.2s; }
button:hover { background: #1d4ed8; }
button:disabled { background: #94a3b8; cursor: not-allowed; }
.link { display: block; text-align: center; margin-top: 15px; font-size: 12px; color: #3b82f6; cursor: pointer; text-decoration: none; }

/* Styles extracted from inline HTML */
.text-label { margin: 10px 0 5px 0; font-weight: bold; color: #1e3a8a; }
.link:hover { text-decoration: underline; }
#formChange, #formRecuperar { display: none; }

/* CSS DAS NOTIFICAÇÕES (TOASTS) */
#toast-container { position: fixed; top: 20px; right: 20px; z-index: 100000; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: white; min-width: 300px; padding: 16px; border-radius: 8px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 12px; animation: slideInRight 0.3s; pointer-events: auto; border-left: 5px solid; }
.toast-content { flex: 1; }
.toast-title { font-weight: 700; font-size: 14px; color: #1e293b; }
.toast-msg { font-size: 12px; color: #64748b; }
.toast-success { border-left-color: #22c55e; } .toast-success i { color: #22c55e; }
.toast-error { border-left-color: #ef4444; } .toast-error i { color: #ef4444; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }

/* Responsive Adjustments */
@media (max-width: 480px) {
    .card { padding: 20px; width: 90%; }
    h2 { font-size: 1.5em; }
}
