/* فایل stylee.css */
/* @i4003 */
/* @i4003 */

body {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #0a192f; /* سرمه‌ای تیره */
    color: #e0e0e0; /* سفید مایل به خاکستری */
}

.container {
    width: 80%;
    margin: auto;
    padding: 40px;
    background-color: #1e2a3a; /* سرمه‌ای کمی روشن‌تر */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    margin-top: 50px;
    border: 1px solid #3f546a; /* حاشیه نازک سرمه‌ای */
}

h2 {
    color: #ffd700; /* طلایی برای عنوان فرم */
    text-align: center;
    margin-bottom: 35px;
    font-size: 2.0em;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 1.1em;
}

input[type="text"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #3f546a;
    border-radius: 8px;
    background-color: #29394d; /* سرمه‌ای تیره‌تر برای فیلدها */
    color: #fff;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}

textarea {
    height: 120px;
    resize: vertical;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #ffd700; /* طلایی */
    color: #0a192f; /* سرمه‌ای تیره برای متن دکمه */
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #e6c300; /* طلایی کمی تیره‌تر در حالت هاور */
    transform: translateY(-3px); /* کمی بالا رفتن دکمه در حالت هاور */
}
/* @i4003 */
/* دکمه سبز روشن */
.light-green-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #a8ff78; /* سبز روشن */
    color: #0a192f; /* سرمه‌ای تیره برای متن دکمه */
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.light-green-button:hover {
    background-color: #bfff8f; /* سبز روشن کمی تیره‌تر در حالت هاور */
    transform: translateY(-3px); /* کمی بالا رفتن دکمه در حالت هاور */
}

/* اضافه کردن فونت وزیرمتن */
@font-face {
    font-family: 'Vazirmatn';
    src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
/*  telegram @i4003 */