       @import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --secondary: #10b981;
            --dark: #e6b30b;
            --light: #f8fafc;
            --gray: #94a3b8;
            --gradient: linear-gradient(135deg, #323232, #2a2926b9);
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            color: var(--dark);
            background: url(/pluto/images/index/IMG_20250429_092836_344-pica_2.png) fixed no-repeat;
            background-position: center;
            background-size: cover;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .line {
            border-bottom: 2px solid goldenrod;
        }

        /* section_header */
        .section_header {
            background: var(--gradient);
            color: white;
            padding: 150px 0 120px;
            clip-path: ellipse(100% 100% at 50% 0%);
            position: relative;
            overflow: hidden;
        }

        .section_header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
            background-size: cover;
            background-position: bottom;
            opacity: 0.5;
        }

        .header-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .header-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInDown 1s ease;
            color: gold;
        }

        .header-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
            animation: fadeIn 1.5s ease;
        }

        .btn1 {
            display: inline-block;
            background: white;
            color: gold;
            padding: 12px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: var(--transition);
            border: 2px solid white;
            box-shadow: var(--shadow);
            animation: fadeInUp 1s ease;
        }

        .btn1:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .container_box {
            margin-top: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100vh;
        
            margin-bottom: 10px;
        }

        /* تصميم الساعة مع عناصرها */
        .container_login {
            position: relative;
            width: 500px;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            overflow: hidden;
        }

        .container_login span {
            position: absolute;
            left: 0;
            width: 32px;
            height: 6px;
            background: rgb(96, 88, 44);
            border-radius: 80px;
            transform-origin: 250px;
            transform: rotate(calc(var(--i) * (360deg / 50)));
            animation: blink 3s linear infinite;
            animation-delay: calc(var(--i) * (3s / 50));
        }

        @keyframes blink {
            0% { background: goldenrod; }
            25% { background: goldenrod; }
        }

        .login-box {
            position: absolute;
            width: 320px;
            z-index: 1;
            padding: 30px;
      
        }

        form {
            width: 100%;
        }

        h2 {
            font-size: 1.8em;
            color: goldenrod;
            text-align: center;
            margin-bottom: 20px;
        }

        .input-box {
            position: relative;
            margin: 25px 0;
        }

        input {
            width: 100%;
            height: 45px;
            background: transparent;
            border: 2px solid goldenrod;
            outline: none;
            border-radius: 40px;
            text-align: center;
            font-size: 1em;
            color: #fff;
            text-align: end;
            padding: 0 15px;
            transition: 0.5s ease;
        }

        input:focus {
            border-color: goldenrod;
        }

        input[value]:not([value=""]):focus ~ label,
        input:focus ~ label {
            top: -10px;
            font-size: 0.8em;
            background: rgb(99, 81, 35);
            padding: 0 6px;
            color: white;
        }

        label {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            font-size: 1em;
            pointer-events: none;
            transition: 0.5s ease;
            color: #fff;
        }

        .forgot-pass {
            margin: -10px 0 10px;
            text-align: center;
        }

        .forgot-pass a {
            font-size: 0.85em;
            color: #fff;
            text-decoration: none;
        }

        .btn {
            width: 100%;
            height: 45px;
            background: goldenrod;
            border: none;
            outline: none;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1em;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: darkgoldenrod;
        }

        .signup-link {
            margin: 15px 0;
            text-align: center;
        }

        .signup-link a {
            font-size: 1em;
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
            margin: 5px 0;
        }

        .me {
            position: relative;
            margin-bottom: 50px;
        }

        .red {
            position: absolute;
            bottom: -30px;
            right: 0;
            font-size: 0.9rem;
            color: gold;
            width: 100%;
            text-align: center;
        }

        .border {
            border-bottom: 1px solid white;
            padding-bottom: 2px;
        }

        /* التعديلات المتجاوبة مع ضبط جميع العناصر */
        @media (max-width: 768px) {
            .container_login {
                width: 450px;
                height: 450px;
            }
            
            .container_login span {
                width: 28px;
                height: 5.5px;
                transform-origin: 225px;
            }
            
            .login-box {
                width: 280px;
                padding: 25px;
            }
            
            h2 {
                font-size: 1.6em;
                margin-bottom: 15px;
            }
            
            input {
                height: 40px;
                font-size: 0.95em;
            }
            
            .btn {
                height: 40px;
                font-size: 0.95em;
            }
        }

        @media (max-width: 600px) {
            .container_login {
                width: 400px;
                height: 400px;
            }
            
            .container_login span {
                width: 25px;
                height: 5px;
                transform-origin: 200px;
            }
            
            .login-box {
                width: 250px;
                padding: 20px;
            }
            
            h2 {
                font-size: 1.5em;
                margin-bottom: 15px;
            }
            
            .input-box {
                margin: 20px 0;
            }
            
            input {
                height: 38px;
                font-size: 0.9em;
            }
            
            .btn {
                height: 38px;
                font-size: 0.9em;
            }
            
            .signup-link a {
                font-size: 0.95em;
            }
        }

        @media (max-width: 480px) {
            .container_login {
                width: 360px;
                height: 360px;
            }
            
            .container_login span {
                width: 22px;
                height: 4.5px;
                transform-origin: 180px;
            }
            
            .login-box {
                width: 230px;
                padding: 18px;
            }
            
            h2 {
                font-size: 1.4em;
                margin-bottom: 12px;
            }
            
            .input-box {
                margin: 18px 0;
            }
            
            input {
                height: 36px;
                font-size: 0.85em;
                padding: 0 12px;
            }
            
            label {
                right: 12px;
                font-size: 0.9em;
            }
            
            .btn {
                height: 36px;
                font-size: 0.85em;
            }
            
            .signup-link a {
                font-size: 0.9em;
            }
            
            .red {
                font-size: 0.8rem;
                bottom: -25px;
            }
        }

        @media (max-width: 400px) {
            .container_login {
                width: 320px;
                height: 320px;
            }
            
            .container_login span {
                width: 20px;
                height: 4px;
                transform-origin: 160px;
            }
            
            .login-box {
                width: 210px;
                padding: 15px;
            }
            
            h2 {
                font-size: 1.3em;
                margin-bottom: 10px;
            }
            
            .input-box {
                margin: 15px 0;
            }
            
            input {
                height: 34px;
                font-size: 0.8em;
                padding: 0 10px;
            }
            
            label {
                right: 10px;
                font-size: 0.85em;
            }
            
            input:focus ~ label,
            input[value]:not([value=""]):focus ~ label {
                top: -8px;
                font-size: 0.75em;
            }
            
            .btn {
                height: 34px;
                font-size: 0.8em;
            }
            
            .signup-link {
                margin: 12px 0;
            }
            
            .signup-link a {
                font-size: 0.85em;
                margin: 4px 0;
            }
            
            .red {
                font-size: 0.75rem;
                bottom: -20px;
            }
            
            .header-content h1 {
                font-size: 2.2rem;
            }
            
            .header-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 360px) {
            .container_login {
                width: 300px;
                height: 300px;
            }
            
            .container_login span {
                width: 18px;
                height: 3.5px;
                transform-origin: 150px;
            }
            
            .login-box {
                width: 190px;
                padding: 12px;
            }
            
            h2 {
                font-size: 1.2em;
            }
            
            input {
                height: 32px;
            }
            
            .btn {
                height: 32px;
            }
        }

        @media (max-width: 320px) {
            .container_login {
                width: 280px;
                height: 280px;
            }
            
            .container_login span {
                width: 16px;
                height: 3px;
                transform-origin: 140px;
            }
            
            .login-box {
                width: 180px;
                padding: 10px;
            }
            
            h2 {
                font-size: 1.1em;
                margin-bottom: 8px;
            }
            
            .input-box {
                margin: 12px 0;
            }
            
            input {
                height: 30px;
                font-size: 0.75em;
                padding: 0 8px;
            }
            
            label {
                right: 8px;
                font-size: 0.8em;
            }
            
            .btn {
                height: 30px;
                font-size: 0.75em;
            }
            
            .signup-link {
                margin: 10px 0;
            }
            
            .signup-link a {
                font-size: 0.8em;
            }
            
            .red {
                font-size: 0.7rem;
                bottom: -18px;
            }
        }

        /* تعديلات باقي الصفحة */
        @media (max-width: 480px) {
            .section_header {
                padding: 100px 0 80px;
            }
            
            .container_box {
                height: auto;
                min-height: 100vh;
                padding: 20px 0;
            }
        }