/* -- لود فونت استعداد -- */
@font-face {
    font-family: 'Estedad';
    src: url('../fonts/Estedad-Regular.woff2') format('woff2');
    font-weight: normal;
}
@font-face {
    font-family: 'Estedad';
    src: url('../fonts/Estedad-Bold.woff2') format('woff2');
    font-weight: bold;
}
:root {
    --box-radius: 8px;
}
.btn-gray{
    background-color: #CCCCCC26;
}
body {
    background-image: linear-gradient(to right top, #1c135b, #18134f, #151243, #131137, #120f2b, #120f2b, #120f2b, #120f2b, #131137, #151243, #18134f, #1c135b);
    font-family: 'Estedad', sans-serif;
    overflow-x: hidden;
}

.auth-card {
    height: 527px;
    position: relative;
    margin-top: 60px;
    background: #C5C5C533;
    background-blend-mode: lighten;
    background: linear-gradient(32.72deg, rgb(13 11 30) -11.7%, #6139dd 125.21%);
    backdrop-filter: blur(16px);
    border-radius: var(--box-radius);
    padding: 3rem 2rem 2rem;
    color: #f8fafc;
    box-shadow: inset 0 0 11.5px rgba(255, 255, 255, 0.6);
}

/* 1. آیکون شیشه‌ای */
.icon-container {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1); /* بک‌گراند شیشه‌ای */
    backdrop-filter: blur(12px);
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 2. باکس شیشه‌ای برای دکمه‌های ورود و عضویت */
.glass-nav-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--box-radius);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.1rem;
    margin-top: 29px;
}

.nav-pills .nav-link {
    color: #94a3b8;
    border-radius: var(--box-radius);
    transition: all 0.3s;
}
.nav-pills .nav-link.active {
    background: linear-gradient(360deg, #8189DF 0%, #3F4DE3 100%);
    color: white;
    font-weight: bold;
}

/* 4. فیلدهای ورودی کاملاً سفید */
.form-control {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    color: #0f172a !important;
    border-radius: var(--box-radius);
}
.form-control:focus {
    background: #ffffff !important;
    border-color: #6366f1;
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}
.form-control::placeholder {
    color: #94a3b8;
}

.otp-input {
    width: 45px;
    height: 55px;
    text-align: center;
    font-size: 1.5rem;
    margin: 0 5px;
    border-radius: var(--box-radius);
    border: 1px solid #e2e8f0;
    background: #ffffff !important;
    color: #0f172a !important;
    transition: all 0.3s;
}
.otp-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}
.btn-primary-laravel{
    background: linear-gradient(180deg, #3F4DE3 0%, #7E86DF 100%);

}