body {
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.padding-all {
    width: 360px;
    background: var(--bg-soft);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
}
.header h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.mail-form-agile input[type=text],
.mail-form-agile input[type=password] {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--bg);
    color: var(--text);
}
.mail-form-agile input[type=submit] {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.mail-form-agile input[type=submit]:hover {
    background: rgba(79,140,255,0.8);
}
.login-error {
    margin-top: 20px;
    color: #ff5555;
    font-weight: bold;
    font-size: 0.9rem;
}
.login-error a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.login-error a:hover {
    text-decoration: underline;
}
.footer {
    margin-top: 25px;
    font-size: 0.7rem;
    color: var(--text-soft);
}