@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

#crazy_coder-emailgen-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top,
    #1a0759 0%,
    #12034d 40%,
    #0b0220 100%);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.crazy_coder-container {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(142,127,255,0.35);
  border-radius: 24px;
  box-shadow: 0 0 35px rgba(142,127,255,0.45);
  padding: 36px 28px;
  width: 100%;
  max-width: 960px;
  text-align: center;
}

.crazy_coder-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
}

.crazy_coder-subtitle {
  color: #dcdcff;
  margin-bottom: 25px;
}

.crazy_coder-section-title {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 14px 0 8px;
  border-left: 4px solid #8E7FFF;
  padding-left: 8px;
}

.crazy_coder-input,
.crazy_coder-select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(142,127,255,0.45);
  background: rgba(255,255,255,0.92);
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.crazy_coder-input:focus,
.crazy_coder-select:focus {
  outline: none;
  box-shadow: 0 0 9px rgba(142,127,255,0.7);
}

.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.crazy_coder-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.crazy_coder-btn,
.crazy_coder-btn-outline {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary Button */
.crazy_coder-btn {
  background: linear-gradient(135deg, #8E7FFF, #4A3AFD);
  color: white;
  border: none;
  box-shadow: 0 0 14px rgba(142,127,255,0.45);
}

.crazy_coder-btn:hover {
  transform: scale(1.06);
}

/* Outline Button */
.crazy_coder-btn-outline {
  background: transparent;
  border: 2px solid #8E7FFF;
  color: #8E7FFF;
}

.crazy_coder-btn-outline:hover {
  background: #8E7FFF;
  color: white;
}

/* Output Box */
.crazy_coder-output {
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(142,127,255,0.3);
  width: 100%;
  color: #000;
  max-width: 850px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
  white-space: pre-line;
  margin-top: 25px;
}
