/* 🌌 Контейнер по центру экрана */
.edit-profile-container {
    margin-top: 80px;  /* такой же отступ, как на профиле */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 60px;
}

/* 🧊 Стеклянная карточка редактирования */
.edit-profile-card {
    background: rgba(0, 0, 0, 0.6); /* полупрозрачный фон */
    border: 1px solid rgba(0, 204, 255, 0.3); /* тонкая голубая рамка */
    border-radius: 16px;
    padding: 30px;
    max-width: 460px;
    width: 100%;

    /* 💡 ГЛАВНОЕ — эффект свечения */
    box-shadow:
        0 0 12px #00ccff,
        0 0 24px rgba(0, 204, 255, 0.4),
        0 0 36px rgba(0, 204, 255, 0.25);

    backdrop-filter: blur(8px);
    color: #e0e0e0;
    transition: box-shadow 0.3s ease;
}

/* ✏️ Заголовок */
.edit-profile-title {
    color: #00ccff;
    text-align: center;
    margin-bottom: 24px;
}

/* 📝 Поля формы */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #00ccff;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #fff;
    outline: none;
    box-shadow: inset 0 0 6px rgba(0, 204, 255, 0.2);
}

.form-group input:disabled {
    background-color: #111;
    color: #aaa;
}

/* --------Кнопки------------- */
.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
}

/* 🟩 Зелёная кнопка "Сохранить" в неоновом стиле */
.btn-save {
    background: #1c1f30;
    color: #44d444;
    border: 1px solid #44d444;
    padding: 5px 12px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    box-shadow: inset 0 0 4px #44d444, 0 0 8px rgba(68, 212, 68, 0.3);
    transition: 0.3s ease;
}

.btn-save:hover {
    background-color: #44d444;
    color: #000;
    box-shadow: 0 0 10px #44d444, 0 0 20px #44d444;
    cursor: pointer;
}

/* 🔴 Красная кнопка "Отмена" в неоновом стиле */
.btn-cancel {
    background: #1c1f30;
    color: #ff0033;
    border: 1px solid #ff0033;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    box-shadow: inset 0 0 4px #ff0033, 0 0 8px rgba(255, 0, 51, 0.3);
    transition: 0.3s ease;
}

.btn-cancel:hover {
    background-color: #ff0033;
    color: #000;
    box-shadow: 0 0 10px #ff0033, 0 0 20px #ff0033;
    cursor: pointer;
}

