
     
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .login-container {
            background: rgba(0, 0, 0, 0.6);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 400px;
            text-align: center;
        }

        h2 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .error-message {
            color: red;
            font-size: 14px;
            margin-bottom: 10px;
        }

        input[type="text"], input[type="password"] {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #fff;
            color: #333;
            font-size: 16px;
        }

        input[type="submit"] {
            background-color: #2575fc;
            color: white;
            padding: 10px 20px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        input[type="submit"]:hover {
            background-color: #6a11cb;
        }

        .forgot-password {
            margin-top: 10px;
            font-size: 14px;
        }

        .forgot-password a {
            color: #ffd700;
            text-decoration: none;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        /* تحريك النموذج */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-container {
            animation: fadeIn 1s ease-out;
        }
@media (max-width: 768px) {
            .small-text1 {
                font-size: 12px;
                padding: 6px 8px;
            }
       .small-text {
            font-size: 17px;
            margin: 20px auto;
            padding: 10px;
            max-width: 900px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 12px;
        }

    @media (max-width: 768px) {
            .small-text {
                font-size: 12px;
                padding: 6px 8px;
            }
        
          .small-text1 {
            font-size: 18px;
            margin: 20px auto;
            padding: 10px;
            max-width: 900px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 12px;
        }

         .small-text1 {
                font-size: 14px;
                padding: 8px 10px;
            }

