* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #1e2b1e;
    color: #e8ece6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}
.card {
    background: #273627;
    border: 1px solid #3a4a3a;
    border-radius: 12px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
h1 {
    margin: 0 0 4px;
    font-size: 22px;
    color: #a8d99a;
}
p.sub {
    margin: 0 0 24px;
    color: #9db296;
    font-size: 14px;
}
label {
    display: block;
    font-size: 13px;
    color: #cdd9c8;
    margin: 16px 0 6px;
}
input[type=text], input[type=email], input[type=password] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #4a5d4a;
    background: #1e2b1e;
    color: #e8ece6;
    font-size: 14px;
}
input:focus { outline: 2px solid #6bbf59; }
button, .btn {
    width: 100%;
    margin-top: 24px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #4a9d3a;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
}
button:hover, .btn:hover { background: #5db34a; }
.btn.reject { background: #b3413a; }
.btn.reject:hover { background: #c9534b; }
.error {
    background: #4a2323;
    border: 1px solid #7a3a3a;
    color: #f0b8b3;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}
.success {
    background: #23402a;
    border: 1px solid #3a7a4a;
    color: #b3f0c0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #3a4a3a;
    font-size: 14px;
}
.info-row span:first-child { color: #9db296; }
.actions { display: flex; gap: 12px; margin-top: 24px; }
.actions .btn { margin-top: 0; }
