.account-container {
  max-width: 800px;
  margin: 100px auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent), var(--secondary-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.account-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.account-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.section-title i {
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.section-title h3 {
  margin: 0;
  font-size: 1.5rem;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.warning-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.delete-confirmation {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 12px;
}

.delete-confirmation p {
  color: #e74c3c;
  font-weight: 500;
}

.delete-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-danger {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 50px;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  border-radius: 50px;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
  box-shadow: 0 10px 30px rgba(108, 117, 125, 0.3);
}

.phone-input-container {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 30% !important;
}

.phone-number {
  width: 70% !important;
}

.non-editable {
  background-color: rgba(255, 255, 255, 0.03);
  cursor: not-allowed;
}

/* Password Requirements Styles */
.password-requirements {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

.password-requirements ul {
  margin: 5px 0;
  padding-left: 20px;
  list-style: none;
}

.password-requirements li {
  margin: 4px 0;
  position: relative;
  padding-left: 5px;
}

.password-requirements li::before {
  content: '•';
  position: absolute;
  left: -12px;
}

.password-requirements li.valid {
  color: #28a745;
}

.password-requirements li.valid::before {
  content: '✓';
}

.password-requirements li.invalid {
  color: #dc3545;
}

.password-requirements li.invalid::before {
  content: '✗';
}