body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
}

.auth-box {
    max-width: 420px;
    margin: 60px auto;
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #222;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 10px 38px 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.toggle-eye {
    position: absolute;
    right: 12px;
    top: 38px;
    cursor: pointer;
    font-size: 16px;
    color: #777;
    user-select: none;
}

.btn-primary {
    width: 100%;
    padding: 11px;
    background: #2d6cdf;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.btn-primary:hover { background: #1f56b8; }

.alert {
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.alert-success { background: #e1f7e6; color: #1d7a34; border: 1px solid #b6e8c2; }
.alert-error { background: #fdeaea; color: #b32424; border: 1px solid #f3c6c6; }

.auth-links {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
}

.auth-links a { color: #2d6cdf; text-decoration: none; }

.password-display {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    background: #fffbe6;
    border: 1px dashed #e0c200;
    padding: 14px;
    border-radius: 8px;
    letter-spacing: 1px;
    margin: 15px 0;
}

table.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

table.admin-table th, table.admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    text-align: left;
}

table.admin-table th { background: #f0f3f7; }

.status-badge {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #fff;
}
.status-pending { background: #e0a800; }
.status-approved { background: #28a745; }
.status-rejected { background: #d9534f; }

.btn-sm {
    padding: 5px 12px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    color: #fff;
}
.btn-approve { background: #28a745; }
.btn-reject { background: #d9534f; }
