/* إعدادات عامة */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;

    background: url('../images/background.png') no-repeat center center fixed;
    background-size: cover;

    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* الصفحة الرئيسية */
.center-content h1,
.center-content p {
    display: inline-block;
    background: rgba(0, 0, 0, 0.35); /* شفافية ناعمة */
    padding: 14px 30px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* النص المتحرك */
.animated-text {
    font-size: 3rem;
    animation: fadeIn 3s ease-in-out infinite alternate;
}

/* الزر */
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    background-color: #2575fc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 16px;
}

.btn:hover {
    background-color: #6a11cb;
}

/* صفحة تسجيل الدخول */
.login-page {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    width: 300px;
}

/* الفورم */
.login-form input,
.login-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.login-form button {
    background-color: #2575fc;
    color: white;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #6a11cb;
}

/* رابط العودة */
.back-link {
    color: white;
    text-decoration: underline;
}

/* الحركة */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}