@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

#crazy_coder-emailname-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #6F79FF 0%, #FAFAFA 60%, #FAFAFA 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.92);
  border-radius: 26px;
  border: 1.5px solid rgba(111, 121, 255, 0.35);
  box-shadow: 0 18px 45px rgba(111, 121, 255, 0.35);
  padding: 36px 30px;
  width: 100%;
  max-width: 980px;
  text-align: center;
}

.crazy_coder-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111;
}

.crazy_coder-subtitle {
  color: #444;
  margin-bottom: 22px;
}

.crazy_coder-section-title {
  text-align: left;
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  margin: 18px 0 10px;
  border-left: 4px solid #6F79FF;
  padding-left: 8px;
}

.crazy_coder-input,
.crazy_coder-select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(111,121,255,0.4);
  background: rgba(255,255,255,0.97);
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: 0.25s;
}

.crazy_coder-input:focus,
.crazy_coder-select:focus {
  border-color: #6F79FF;
  box-shadow: 0 0 8px rgba(111,121,255,0.6);
  outline: none;
}

.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 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: 0.25s;
}

.crazy_coder-btn {
  background: linear-gradient(135deg, #6F79FF, #A4ABFF);
  color: #fff;
  border: none;
}

.crazy_coder-btn:hover {
  transform: translateY(-2px);
}

.crazy_coder-btn-outline {
  background: transparent;
  color: #6F79FF;
  border: 2px solid #6F79FF;
}

.crazy_coder-btn-outline:hover {
  background: #6F79FF;
  color: #fff;
}

.crazy_coder-output {
  background: white;
  padding: 22px;
  border-radius: 16px;
  margin-top: 25px;
  box-shadow: 0 12px 30px rgba(111,121,255,0.25);
  white-space: pre-line;
  text-align: left;
  color: #222;
}
