/* Account Info Page Styles */
.account-info-container {
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Soft shadow */
  padding: 30px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* Header */
.account-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 30px;
}

.header-icon {
  font-size: 40px;
  color: #4f46e5; /* Indigo-600 */
}

.header-text h1 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}

.header-text p {
  font-size: 14px;
  color: #6b7280;
  margin: 4px 0 0 0;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.section-title i {
  color: #6b7280;
}

/* Inputs */
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  transition: all 0.2s ease;
  overflow: hidden;
}

.input-wrapper:focus-within {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.input-wrapper.readonly {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.input-wrapper.readonly input {
  color: #6b7280;
}

.input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  color: #9ca3af;
  font-size: 16px;
}

.form-input {
  width: 100%;
  border: none;
  padding: 0 16px;
  height: 44px;
  font-size: 14px;
  color: #111827;
  outline: none;
  background: transparent;
}

.form-input::placeholder {
  color: #9ca3af;
}

/* Gender Radio */
.gender-options {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}

.radio-label input[type="radio"] {
  accent-color: #4f46e5;
  width: 18px;
  height: 18px;
}

/* Full Width Address */
.full-width {
  grid-column: span 1;
}

/* Actions */
.form-actions {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #f3f4f6;
  text-align: right;
}

.btn-save {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
  transition: all 0.2s;
}

.btn-save:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px -1px rgba(79, 70, 229, 0.3);
}

.btn-save:active {
  transform: translateY(0);
}

/* Validation */
.invalid-feedback {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .account-info-container {
    margin: 20px;
    padding: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .full-width {
    grid-column: auto;
  }

  .form-actions {
    text-align: center;
  }

  .btn-save {
    width: 100%;
    justify-content: center;
  }
}
