@import url(../lib/fontvazir/Vazirmatn-RD-FD-font-face.css);
*{
    font-family: Vazirmatn RD FD;
}

body {
      background-color: #f8f9fa;
      direction: rtl;
      text-align: right;
}
.login-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ffffff6b;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin:20px;
}
.login-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.login-btn {
    width: 100%;
    background-color: #007bff;
    border: none;
    padding: 10px;
    color: #ffffff;
    border-radius: 5px;
    font-size: 16px;
}
.login-btn:hover {
    background-color: #0056b3;
}

        body {
            background: linear-gradient(135deg, #74ebd5, #ACB6E5);
            font-family: "IRANSans", Tahoma, sans-serif;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .login-container {
            width: 100%;
            max-width: 420px;
            background: #fff;
            padding: 40px 35px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,.2);
            animation: fadeIn 0.8s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .login-logo {
            text-align: center;
            margin-bottom: 15px;
        }
        .login-logo i {
            font-size: 50px;
            color: #0077b6;
            background: #e6f4f9;
            padding: 15px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,119,182,0.2);
        }
        .login-header {
            font-size: 22px;
            font-weight: bold;
            text-align: center;
            margin: 15px 0 25px;
            color: #0077b6;
        }
        .form-control {
            border-radius: 12px;
            padding: 12px;
        }
        .login-btn {
            width: 100%;
            border-radius: 12px;
            background: linear-gradient(135deg, #0077b6, #023e8a);
            color: #fff;
            font-size: 18px;
            padding: 12px;
            transition: 0.3s;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #0096c7, #023e8a);
            transform: translateY(-2px);
        }
        .footer-text {
            text-align: center;
            font-size: 13px;
            color: #555;
            margin-top: 15px;
        }