/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 19, 2026, 5:47:18 PM
    Author     : Fatima
*/

        :root {
            --primary-color: #0c3661;  
            --secondary-color: #cbb062; 
            --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
            --text-dark: #222222;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Cairo', sans-serif;
        }

        body {
            background-color: #f4f6f9;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }


        /* ??????? ???????? ?????? ????? */
        .main-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 20px;
        }

        /* ???? ????? ?????? ???????? ?? ???? a1 */
        .login-card {
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border-top: 4px solid #c5a059;
            width: 100%;
            max-width: 480px;
            padding: 35px 30px;
            text-align: center;
        }

        /* ???????? ???????? ?????? ?? c1 ????? ?????? a1 */
        .card-title {
            color: #0b2545;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .card-subtitle {
            color: #2e7d32; /* ??????? ???? ???? ????? ???? ????? c1 ??????? ?????? */
            font-size: 13px;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 25px;
            background-color: #f0fdf4;
            padding: 12px;
            border-radius: 8px;
            border: 1px dashed #bbf7d0;
        }

        .email-link {
            display: block;
            color: #16a34a;
            font-weight: 700;
            text-decoration: none;
            margin-top: 5px;
        }

        /* ????? ?????? ????????? ?????? ??? ?? c1 */
        .form-group {
            margin-bottom: 20px;
            text-align: right;
        }

        .form-group label {
            display: block;
            color: #0b2545;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .input-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-container input {
            width: 100%;
            padding: 12px 40px 12px 15px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            background-color: #f8fafc;
            transition: all 0.3s ease;
        }

        .input-container input:focus {
            border-color: #0b2545;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.1);
        }

        .input-container i {
            position: absolute;
            right: 15px;
            color: #94a3b8;
            font-size: 16px;
        }

        /* ??? ??? ?????? (????????) */
        .captcha-flex {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .captcha-box {
            background-color: #000000;
            color: #00ffcc;
            font-family: monospace;
            font-size: 18px;
            font-weight: bold;
            padding: 10px 15px;
            border-radius: 8px;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
            height: 47px;
        }

        /* ??????? ??????? ?? ????? a1 ?? ???? ?????? */
        .actions-flex {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .btn {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-login {
            background-color: #0b2545;
            color: #ffffff;
        }

        .btn-login:hover {
            background-color: #143864;
        }

        .btn-reset {
            background-color: #f1f5f9;
            color: #475569;
        }

        .btn-reset:hover {
            background-color: #e2e8f0;
        }

        /* ???? ???? ??? (??????? ??????? ??????? ???????? ??? ?? a1) */
        .sanad-option {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
            padding: 12px;
            background-color: #fef9ec;
            border: 1px dashed #c5a059;
            border-radius: 8px;
            color: #8a6d3b;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
        }

        .sanad-option:hover {
            background-color: #fdf2d6;
        }

        /* ??????? ???????? ??????? ???????? ?? ????? a1 ??????? */
        .bottom-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-top: 25px;
            border-top: 1px solid #f1f5f9;
            padding-top: 20px;
        }

        .link-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #475569;
            text-decoration: none;
            font-size: 11px;
            font-weight: 600;
        }

        .link-card:hover {
            color: #c5a059;
        }

        .link-card i {
            font-size: 16px;
            color: #0b2545;
            margin-bottom: 6px;
        }
 /* ?????? ?????? */
        header {
            background-color: #002b5c; 
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 4px solid #c5a059; 
        }

        /* ????? ?????? ?????? ??????? ??????? (Documents Verifications) */
        .header-title-center {
            color: white;
            font-family: serif;
            font-size: 28px;
            font-weight: normal;
        }

        .logo-container {
            display: flex;
            align-items: center;
            color: white;
            text-align: right;
        }

        .logo-text {
            margin-right: 15px;
        }

        .logo-text h1 {
            font-size: 16px;
            font-weight: 700;
        }

        .logo-text p {
            font-size: 11px;
            color: #d1d5db;
        }

        .logo-icon {
            border: 2px solid #c5a059;
            padding: 5px 10px;
            font-size: 20px;
            color: #c5a059;
            border-radius: 4px;
        }
  /* ?????? ?????? ?????? ??????? */
        .site-footer {
            width: 100%;
            background-color: var(--primary-color);
            border-top: 4px solid var(--secondary-color);
            color: #ffffff;
            padding: 30px 5% 20px 5%;
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px;
            margin-bottom: 15px;
        }

        .footer-info {
            flex: 1;
            min-width: 250px;
        }

        .footer-info p {
            font-size: 13px;
            color: #e2e8f0;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-info p i {
            color: var(--secondary-color);
            width: 16px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .social-icon:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(203, 176, 98, 0.3);
        }

        .footer-copyright {
            text-align: center;
            font-size: 12px;
            color: #a0aec0;
        }