/* Container and title remain the same */
.custom-container {
  background-color: black;
  color: white;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.title {
  font-size: 16px;
  font-weight: bold;
	color: white
}

.subtitle {
  color: #ccc;
	  font-size: 15px;
  margin-top: 0.5rem;
}

.form-section {
  margin-top: 2rem;
}

/* Flex layout for inputs */
.form-row, .button-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

/* Modern input field */
.form-field {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 12px 16px;
  background-color: #111;
  border-radius: 5px;
	color: white
}

.form-field::placeholder {
  color: #888;
}

.form-field:focus {
  box-shadow: 0 0 0 2px rgba(4, 104, 254, 0.4);
  outline: none;
}

/* Button shared styles */
.btn {
  flex: 1 1 200px;
  max-width: 260px;
  padding: 12px 16px;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
}

/* Primary Button */
.btn-primary {
  background-color: #0468fe;
}

.btn-primary:hover {
  background-color: #1a73ff;
}

/* Secondary Button */
.btn-secondary {
  background-color: #2a2a2a;
}

button#create-random {
    border-color: #3A68FF;
}
button#create-custom {
    border-color: #3A68FF;
}
input#username {
    color: white;
}