/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Form Container */
.form-container {
  /* background-color: #fff; */
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  max-width: 600px;
  width: 100%;
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 20px;
}
.logo img {
  max-width: 100px;
  height: auto;
}

/* Form Heading */
.details-form h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #444;
}

/* Form Groups */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: #555;
  display: flex;
  justify-content: space-around;
}

.form-group input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group input:focus {
  border-color: #6c63ff;
  outline: none;
  box-shadow: 0 0 3px rgba(108, 99, 255, 0.5);
}

/* 12 Words Section */
.twelve-words {
  margin-bottom: 20px;
}

.twelve-words .words {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.twelve-words .word-field {
  display: flex;
  align-items: center;
}

.twelve-words .word-field label {
  margin-right: 5px;
  font-size: 13px;
}

/* Submit Button */
button[type="submit"] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #6c63ff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #574bd6;
}