:root {
    --okaz-primary: #0f172a;
    --okaz-accent: #16a34a;
    --okaz-muted: #64748b;
    font-family: "Cairo", "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    direction: rtl;
}

.okaz-form-wrapper {
    width: min(420px, 92vw);
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.okaz-form-title {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--okaz-primary);
    text-align: center;
}

.okaz-form-desc {
    margin: 0 0 20px;
    font-size: 15px;
    color: var(--okaz-muted);
    text-align: center;
}

.okaz-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.okaz-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.okaz-label {
    font-size: 14px;
    color: var(--okaz-primary);
    font-weight: 600;
}

.okaz-input {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.okaz-input:focus {
    border-color: var(--okaz-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.okaz-submit {
    margin-top: 6px;
    padding: 12px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(120deg, #16a34a, #22d3ee);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.okaz-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.okaz-submit:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.okaz-message {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.okaz-message.success {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
}

.okaz-message.error {
    background: rgba(225, 29, 72, 0.13);
    color: #be123c;
}

