/* تنظیمات عمومی صفحه */
body {
  background-color: #f9f9f9; /* رنگ زمینه روشن */
  background-image:
    radial-gradient(circle at 30% 40%, rgb(255, 214, 172), rgba(255, 223, 0, 0) 50%), /* دایره زرد */
    radial-gradient(circle at 70% 60%, rgb(115, 166, 221), rgba(0, 123, 255, 0) 50%), /* دایره آبی */
    linear-gradient(to bottom, rgb(249, 249, 249), rgba(249, 249, 249, 0)); /* محو شدن در مرز تکرار */;
  background-size: 100% 1250px; /* فاصله عمودی بین تکرار */
  background-repeat: repeat-y; /* تکرار عمودی */
  height: 100vh; /* ارتفاع صفحه */
  margin: 0;
  font-family: Poppins; /* فونت زیبا */
        overflow-x: hidden; /* جلوگیری از اسکرول افقی */

}

/* استایل دکمه‌ها */
.btn-primary {
  background-color: #4a76fd;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #365dbf;
  transform: scale(1.05); /* جلوه انیمیشن هنگام هاور */
  box-shadow: 0px 4px 8px rgba(74, 118, 253, 0.3);
}

.btn-outline-light {
  border: 1px solid #555;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
a
{
  text-decoration: none;
  color: #626262;
}
.btn-outline-light:hover {
  background-color: #4a76fd;
  color: #fff;
  transform: scale(1.05); /* جلوه انیمیشن هنگام هاور */
}

/* استایل فرم‌ها */
.form-control {
  color: #000000;
  font-size: 16px;
  background-color: #ffffff;
  border: 1px solid #555;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #4a76fd; /* رنگ آبی مدرن */
  box-shadow: 0px 0px 10px rgba(74, 118, 253, 0.5); /* سایه زیبا */
  outline: none;
}

.form-label {
  color: #000000; /* رنگ خاکستری نرم */
  font-weight: 500;
  margin-bottom: 5px;
}

.form-text {
  color: #6c757d; /* رنگ متن کمکی */
}

/* متن‌های غیرفعال */
.text-muted {
  color: #888 !important;
}
.logo {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Just Another Hand', cursive;


}

.logo span {
    color: #03c03c;
}



    /* نوار اعلان */
    #notification-bar {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        z-index: 1050;
        display: none;
        background-color: #2a2a2d;
        color: #fff;
        text-align: center;
        padding: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.5s ease-in-out;
    }
    .card {
        /*background-color: #1b2a41; !* رنگ جذاب و تیره برای کارت *!*/
        border: 1px solid #000000; /* مرز مشکی با ضخامت 1 پیکسل */
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    }

    .card-header {
        background-color: #ffffff;
        color: #000000;
        font-size: 18px;
        font-weight: bold;
        border-bottom: none;
        border-radius: 16px 16px 0 0;
        text-align: center;
        padding: 15px;
    }

    .card-footer {
        background-color: #2a2a2d;
        border-radius: 0 0 16px 16px;
        text-align: center;
        padding: 15px;
    }

    .card-footer a {
        color: #888 !important;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .card-footer a:hover {
        color: #4a76fd !important;
        text-decoration: underline;
    }

    /* استایل آیکون گوگل */
    .google-logo {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    /* متون راهنما و متن‌های غیرفعال */
    .text-muted {
        color: #888 !important;
    }
    hr{
        background-color: #000000;
    }
/* Logo */
.logo {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Just Another Hand', cursive;


}

.logo span {
    color: #03c03c;
}
/* New User Link */
.new-user {
    font-size: 14px;
    color: #666;
}

.new-user a {
    color: #ff6600;
    text-decoration: none;
}

.new-user a:hover {
    text-decoration: underline;
}


/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    color: #999;
    font-size: 14px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}
