/* خلفية عامة */
body {
    font-family: "Tahoma", Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
    direction: rtl; /* لأن الصفحة بالعربية */
}
/* خلفية عامة للأساتذة */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-image: url("lycee/assets/school.png");
    background-size: cover;       /* تخلي الصورة تغطي كامل الصفحة */
    background-repeat: no-repeat; /* تمنع تكرار الصورة */
    background-position: center;  /* تخلي الصورة تتمركز */
    margin: 0;
    padding: 0;
    direction: rtl;
}


/* العنوان */
h2 {
    text-align: center;
    color: #004080;
    margin-top: 40px;
}

/* الحاوية للفورم */
form {
    max-width: 400px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* التصنيفات */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* حقول الإدخال */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

/* زر الدخول */
button {
    width: 100%;
    padding: 10px;
    background: #004080;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background: #cc00c5;
}

/* رسالة الخطأ */
.error-msg {
    text-align: center;
    color: #d9534f;
    font-weight: bold;
    margin-bottom: 15px;
}
