/* فونت و تنظیمات پایه */
body {
    background-color: #f8f9fa;
    font-family: 'Samim-FD', Tahoma, sans-serif;
    margin: 0;
    padding: 0;
}

/* نمایش لوگوی پس‌زمینه */
body::before {
    content: "";
    background: url('/assets/img/saba.png') no-repeat center center;
    background-size: 300px;
    opacity: 0.05;
    position: fixed;
    inset: 0;
    z-index: -1;
}

/* باکس فرم بی‌رنگ و وسط‌چین */
.register-box {
    background-color: rgba(255, 255, 255, 0.15); /* نیمه‌شفاف */
    backdrop-filter: blur(1.5px); /* فقط کمی مات */
    border: 1px dashed #bbb;
    box-shadow: none;
}


/* حالت دست موس روی آیتم‌های کلیک‌پذیر */
button, a, select {
    cursor: pointer;
}

/* دکمه ارسال لینک بازیابی – بزرگ، قابل کلیک، هاور جذاب */
.btn-primary {
    font-size: 1.1rem;
    padding: 12px 24px;
    width: 100%;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.02);
}

/* فیلد ایمیل و لیبل بزرگ‌تر و خواناتر */
label[for="email"] {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 8px;
    text-align: start;
}

#email {
    font-size: 1rem;
    padding: 10px;
    margin-bottom: 20px;
}
