.card {
  border: none;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
  border: none;
}

.submit-button {
  background: #21203f !important;
  color: white;
  border: none !important;
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: 50px;
  letter-spacing: 1.2px;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0px 5px 15px rgba(243, 109, 27, 0.3);
}

button:hover {
  background: #21203f;

  box-shadow: 0px 8px 20px rgba(33, 32, 63, 0.5);
}

a {
  color: #f36d1b !important;
  font-weight: bold;
  transition: color 0.2s ease;
}

a:hover {
  color: #21203f;
  text-decoration: underline;
}

form input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  margin-top: 10px;
}

#id_rolle {
  display: flex;
  gap: 1rem;
}

#id_rolle input[type="radio"] {
  display: none; /* Hide the actual radio button */
}

form input:focus {
  outline: none;
  border-color: #f36d1b;
  box-shadow: 0px 0px 5px rgba(243, 109, 27, 0.5);
}

#id_rolle label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;

  border: 1.5px solid #ddd;
  border-color: #21203f;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 0.9rem;
}

#id_rolle label:has(input[type="radio"]:checked) {
  background-color: #f36d1b;
  color: white;
  border-color: #21203f;
  box-shadow: 0px 5px 15px rgba(243, 109, 27, 0.3);
  border: none;
}
