@font-face {
    font-family: 'Yekan';
    src: url('./assets/fonts/Yekan.woff2') format('woff2'),
         url('../assets/fonts/Yekan.woff') format('woff');
  }

        * {
            box-sizing: border-box;
            font-family: Yekan,Tahoma, sans-serif;
            margin: 0;
            padding: 0;
            direction: rtl;
        }
        body {
            background: #f4f4f4;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .login-box {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 100%;
            max-width: 300px;
        }
        .login-box h2 {
            margin-bottom: 15px;
            font-size: 20px;
            text-align: center;
        }
        form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        label {
            align-self: flex-start;
            margin-bottom: 5px;
            font-size: 14px;
            font-weight: bold;
        }
        input {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
            background: #f8f9fa;
        }
        button {
            width: 100%;
            padding: 10px;
            background: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        button:hover {
            background: #0056b3;
        }
        .error {
            color: red;
            font-size: 13px;
            margin-bottom: 10px;
        }
        a {
            text-align: right;
            width: 100%;
            display: block;
            text-decoration: none;
            margin-top: 13px;
            font-size: 14px;
            color: rgb(64, 63, 63);

        }