/* static/style.css (versão melhorada) */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.form-card, .login-card, .result-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

hr {
    border: none;
    height: 1px;
    background-color: #e5e5e5;
    margin-bottom: 1.5rem;
}

h1 { margin-top: 0; }
label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
input { width: 100%; padding: 0.8rem; margin-bottom: 1rem; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; box-sizing: border-box; }
button { width: 100%; padding: 0.9rem; border: none; border-radius: 4px; background-color: #fc9700; color: white; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: background-color 0.2s; }
button:hover { background-color: #b36b00; }

/* Mensagens de feedback */
.flash { padding: 1rem; margin-bottom: 1rem; border-radius: 4px; }
.flash.success { background-color: #d4edda; color: #155724; }
.flash.danger { background-color: #f8d7da; color: #721c24; }
.flash.warning { background-color: #fff3cd; color: #856404; }

/* Página de resultado */
.result-card { text-align: center; }
.result-card h1.success { color: #28a745; }
.result-card h1.error { color: #dc3545; }
.credentials { background-color: #f8f9fa; border: 1px solid #dee2e6; border-radius: 4px; padding: 1rem; margin: 1.5rem 0; text-align: left; }
.credentials p { margin: 0.5rem 0; }
.back-button { display: inline-block; margin-top: 1rem; text-decoration: none; font-weight: bold; color: #e68d08; }