/* تنسيق الحاوية الرئيسية */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f7fa;
}

/* تنسيق صندوق تسجيل الدخول */
.login-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* تنسيق العنوان */
h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* تنسيق الحقول والنماذج */
.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .input-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        color: #333;
    }

/* تنسيق الزر */
button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    button:hover {
        background-color: #0056b3;
    }

/* تنسيق روابط إضافية */
.links {
    text-align: center;
    margin-top: 15px;
}

    .links p {
        font-size: 14px;
        color: #333;
    }

    .links a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .links a:hover {
            color: #0056b3;
        }

/* تنسيق الرسالة المؤقتة */
.alert-message {
    margin-top: 20px;
    padding: 10px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    text-align: center;
}

/* Media Queries لتصميم متجاوب مع الأجهزة */
@media (max-width: 768px) {
    .login-box {
        padding: 20px;
    }

    h2 {
        font-size: 18px;
    }

    .input-group input {
        padding: 10px;
        font-size: 14px;
    }

    button {
        padding: 10px;
        font-size: 14px;
    }

    .links p {
        font-size: 12px;
    }

    .alert-message {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login-box {
        width: 90%;
        padding: 15px;
    }

    h2 {
        font-size: 16px;
    }

    .input-group input {
        padding: 8px;
        font-size: 12px;
    }

    button {
        padding: 8px;
        font-size: 12px;
    }

    .links p {
        font-size: 12px;
    }

    .alert-message {
        font-size: 12px;
    }
}
/* تنسيق الحاوية الرئيسية */
.reset-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f7fa;
    font-family: 'Arial', sans-serif;
}

/* تنسيق صندوق إعادة تعيين كلمة المرور */
.reset-password-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    transition: all 0.3s ease;
}

    .reset-password-box:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    /* تنسيق العنوان */
    .reset-password-box h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
        font-size: 24px;
        font-weight: 600;
    }

/* تنسيق الحقول */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .form-group input {
        width: 100%;
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        color: #333;
        box-sizing: border-box;
        transition: border-color 0.3s;
    }

        .form-group input:focus {
            border-color: #007bff;
            outline: none;
        }

/* تنسيق الزر */
button {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    button:hover {
        background-color: #0056b3;
    }

/* تنسيق الرابط للعودة */
.back-link {
    text-align: center;
    margin-top: 20px;
}

    .back-link a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .back-link a:hover {
            color: #0056b3;
        }

/* تنسيق الرسالة المؤقتة */
.alert-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

/* Media Queries لتصميم متجاوب مع الأجهزة */
@media (max-width: 768px) {
    .reset-password-box {
        padding: 25px;
    }

        .reset-password-box h2 {
            font-size: 22px;
        }

    .form-group input {
        padding: 12px;
        font-size: 14px;
    }

    button {
        padding: 12px;
        font-size: 15px;
    }

    .alert-message {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reset-password-box {
        width: 90%;
        padding: 20px;
    }

        .reset-password-box h2 {
            font-size: 20px;
        }

    .form-group input {
        padding: 10px;
        font-size: 12px;
    }

    button {
        padding: 10px;
        font-size: 13px;
    }

    .alert-message {
        font-size: 12px;
    }
}
<style >
/* تنسيق عام للصفحة */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #202124;
    margin: 0;
    padding: 0;
}

/* تنسيق العنوان */
h2 {
    font-size: 24px;
    font-weight: 400;
    color: #202124;
    text-align: center;
    margin-top: 20px;
}

/* تنسيق النموذج */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: #1557b0;
    }

/* تنسيق الجدول */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .table th, .table td {
        padding: 12px;
        text-align: center;
        border: 1px solid #dadce0;
    }

    .table th {
        background-color: #f8f9fa;
        font-weight: 500;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

.table-bordered {
    border: 1px solid #dadce0;
}

.table-responsive {
    overflow-x: auto;
}

/* تنسيق زر التفاصيل */
.btn-info {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-info:hover {
        background-color: #1557b0;
    }

/* تنسيق صف التفاصيل */
.details-row {
    background-color: #f1f3f4;
}

    .details-row table {
        width: 100%;
        margin: 0;
    }

    .details-row th, .details-row td {
        padding: 8px;
        text-align: center;
        border: 1px solid #dadce0;
    }

/* تنسيق النص المركزي */
.text-center {
    text-align: center;
}

/* تنسيق الظل والخلفية */
.shadow {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bg-light {
    background-color: #ffffff;
}

.rounded {
    border-radius: 8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

</style >