/* Sub-page Specific Styles (Privacy, Delete Account, etc.) */
.page-content {
  padding: 60px 0 100px;
  background: var(--bg);
  min-height: calc(100vh - 200px);
}

.sub-panel {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: white;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}

.sub-panel h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
  text-align: center;
}

.panel-desc {
  text-align: center;
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 48px;
}

/* Form Styles */
.delete-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-left: 4px;
}

.form-group input, 
.form-group select {
  width: 100%;
  height: 64px;
  padding: 0 24px;
  border-radius: 18px;
  border: 2px solid var(--border);
  background: #f8fafc;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
}

/* Custom Select Arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px;
  padding-right: 50px;
}

.form-group input:focus, 
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-group input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.notice-box {
  background: #f1f5f9;
  padding: 24px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  border-left: 4px solid var(--primary);
}

@media (max-width: 768px) {
  .sub-panel {
    padding: 40px 24px;
    border-radius: 32px;
  }
  .sub-panel h1 { font-size: 2.2rem; }
  .form-group input, .form-group select { height: 56px; padding: 0 20px; }
}
