
body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(to bottom, #0b2948, #224678);
    color: #fff;
}


.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.login-box {
    background-color: #102940;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box .logo {
    display: block;
    margin: 0 auto 1rem auto;
    font-size: 32px;
    font-weight: 700;
    color: #1abc9c;
    border-bottom: 1px solid #1abc9c;
    padding-bottom: 0.3rem;
    letter-spacing: 1px;
}

.login-box h2 {
    font-size: 22px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #1abc9c;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.subtext {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.login-box label {
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 15px;
}

.login-box input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    background-color: #1a2e40;
    color: white;
    font-size: 14px;
}

.login-box input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #1abc9c;
}

.login-box button {
    width: 100%;
    padding: 0.75rem;
    background-color: #1abc9c;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-box button:hover {
    background-color: #149d89;
}

.remember-me {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.remember-me label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    margin: 5;
    transform: scale(1.2);
    accent-color: #1abc9c;
}

.error {
    color: #f88;
    font-size: 13px;
    text-align: left;
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    font-size: 13px;
    margin-top: 2rem;
    color: #aaa;
}
.captcha-wrapper {
    margin-top: 15px;       /* مسافة فوق */
    margin-bottom: 15px;    /* مسافة تحت */
    display: flex;
    justify-content: center; /* توسيط أفقي */
}

.cf-turnstile {
    transform: scale(1.1);   /* تكبير الكابتشا شوية */
    transform-origin: center;
}
