.modern-form-container {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  padding: 40px 0;
}

.modern-form-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
  padding: 40px;
  text-align: center;
  color: #ffffff;
}

.form-header-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.form-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.form-body {
  padding: 40px;
}

.alert-modern {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.alert-success-modern {
  background: #d1fae5;
  border-left: 4px solid #10b981;
  color: #065f46;
}

.alert-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.alert-content strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.alert-content p {
  margin: 0;
  font-size: 14px;
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e5e7eb;
}

.form-section-header i {
  color: #0088cc;
  font-size: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group-modern.full-width {
  grid-column: 1 / -1;
}

.form-label-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-label-modern i {
  color: #0088cc;
  font-size: 16px;
}

.tooltip-icon {
  margin-left: auto;
  color: #9ca3af;
  cursor: help;
}

.optional-badge {
  background: #f3f4f6;
  color: #6b7280;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  margin-left: 8px;
}

.form-control-modern {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-control-modern:focus {
  outline: none;
  border-color: #0088cc;
  box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.1);
}

.form-control-modern::placeholder {
  color: #9ca3af;
}

.form-hint {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-top: 5px;
}

.form-error {
  display: block;
  font-size: 12px;
  color: #ef4444;
  margin-top: 5px;
  font-weight: 500;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
  grid-column: 1 / -1;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.divider-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.divider-text i {
  color: #0088cc;
}

.divider-text small {
  font-weight: 400;
  color: #9ca3af;
}

.info-box-modern {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #eff6ff;
  border-left: 4px solid #0088cc;
  border-radius: 10px;
}

.info-icon {
  color: #0088cc;
  font-size: 20px;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-content p {
  margin: 0;
  color: #1e40af;
  font-size: 14px;
  line-height: 1.6;
}

.info-content a {
  color: #0088cc;
  font-weight: 600;
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

.btn-submit-modern {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.btn-submit-modern:active {
  transform: translateY(0);
}

.btn-submit-modern i:last-child {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.btn-submit-modern:hover i:last-child {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .modern-form-container {
    padding: 20px 0;
  }
  
  .form-header {
    padding: 30px 20px;
  }
  
  .form-body {
    padding: 25px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-title {
    font-size: 24px;
  }
  
  .form-header-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

