* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #7f8c8d; /* خاکستری تیره برای دسکتاپ و تبلت */
    color: #ffffff; /* سفید برای متن اصلی */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: #2c3e50; /* آبی تیره برای فرم */
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

h1 {
    text-align: center;
    color: #ffffff; /* سفید برای تیتر */
    margin-bottom: 20px;
    font-size: 24px;
}

h1 i {
    margin-left: 10px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff; /* سفید برای لیبل‌ها */
}

label i {
    margin-left: 5px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #ffffff; /* سفید برای ورودی‌ها */
    color: #2c3e50; /* آبی تیره برای متن ورودی */
    font-size: 16px;
}

input:focus {
    outline: none;
    box-shadow: 0 0 5px #c0392b; /* قرمز تیره برای فوکوس */
}

.avatar-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.avatar-label {
    cursor: pointer;
}

.avatar-label img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff; /* سفید برای حاشیه آواتار */
    transition: border-color 0.3s;
}

.avatar-label input:checked + img {
    border-color: #c0392b; /* قرمز تیره برای آواتار انتخاب‌شده */
}

button {
    width: 100%;
    padding: 12px;
    background: #c0392b; /* قرمز تیره برای دکمه */
    border: none;
    border-radius: 5px;
    color: #ffffff; /* سفید برای متن دکمه */
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #ffffff; /* سفید برای هاور دکمه */
    color: #2c3e50; /* آبی تیره برای متن در هاور */
}

button i {
    margin-left: 5px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }

    input[type="text"],
    input[type="password"] {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}

/*@media (max-width: 480px) {
    body {
        background: transparent;*/ /* بدون پس‌زمینه برای موبایل */
    /*}

    .container {
        box-shadow: none;*/ /* سایه رو برمی‌دارم برای موبایل */
    /*}

    .avatar-options {
        flex-direction: column;
        align-items: center;
    }
}*/