.input-style {
  background-color: #ffffff;
  border-width: 1px;
  border-color: #d4d4d4;
  color: #111827;
  font-size: 0.875rem;
  outline: 2px solid transparent;
  display: block;
  width: 400px;
  padding: 1rem;
  height: 70px;
}

.dark .input-style {
  background-color: #374151;
  border-color: #4b5563;
  color: #ffffff;
  outline-color: #2563EB;
}

.outlinetop {
  border-top: none;
}

.zen-kaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.prompt-regular {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.prompt-regular-600 {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.styled-input::placeholder {
  font-size: 12px;
}

.styled-input {
  height: 40px;
  border: 1px solid #D1D5DB;
  margin-top: 4px;
  border-radius: 4px;
  padding-left: 16px;
  width: 100%;
  background-color: #F9FAFB;
}

/* Enhanced styling for new register form */
.form-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form-section:hover {
  box-shadow: 0 4px 12px rgba(79, 121, 188, 0.1);
}

.form-input {
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.form-input:focus {
  border-color: #4F79BC;
  box-shadow: 0 0 0 3px rgba(79, 121, 188, 0.1);
  transform: translateY(-1px);
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  display: block;
}

.required-asterisk {
  color: #ef4444;
  font-weight: bold;
}

.submit-button {
  background: linear-gradient(135deg, #4F79BC 0%, #4273B2 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 121, 188, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-button:hover::before {
  left: 100%;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.error-message::before {
  content: '⚠';
  font-size: 0.75rem;
}

.success-message {
  color: #10b981;
  font-size: 0.875rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.success-message::before {
  content: '✓';
  font-size: 0.75rem;
}

/* Responsive design improvements */
@media (max-width: 768px) {
  .form-section {
    margin: 0 16px;
  }

  .form-input {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

/* Animation for form sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-section {
  animation: fadeInUp 0.6s ease-out;
}

.form-section:nth-child(2) {
  animation-delay: 0.1s;
}

.form-section:nth-child(3) {
  animation-delay: 0.2s;
}

.form-section:nth-child(4) {
  animation-delay: 0.3s;
}