/* استایل‌های مربوط به فیلد رمز عبور */
.form-group {
    margin-bottom: 1rem;
    width: 300px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    padding: 10px 40px 10px 10px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.password-input-container input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.show-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #777;
    transition: color 0.3s;
    padding: 5px;
    background: none;
    border: none;
}

.show-password:hover {
    color: #333;
}

.show-password:focus {
    outline: none;
}