input {
  position: static !important;
  display: inline-block !important;
  background-color: #2c2c2e; /* Dark background color for input text boxes */
  color: black; /* Black text color for input text boxes */
  border: 1px solid #fa8f32; /* Border color to match the theme */
  padding: .375rem .75rem; /* Padding for input text boxes */
  border-radius: 4px; /* Rounded corners for input text boxes */
}

* {
  -webkit-touch-callout: default !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  background: black;
  margin: 0;
  padding: 0;
  background-image: url('/static/main/images/evolibrium.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: contain;
  background-position: center;
  z-index: -1000; /* Ensure it stays behind your content */
  /* Initial state */
  opacity: 1;
  background-size: 1200px;
}

#evocontent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Adjust this if needed based on your background */
  text-align: center;
  z-index: 1000;
  transform: translateY(-50px);
}

.regh1 {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 50px;
  color: white; /* Make the heading white */
}

.form-group {
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 8px;
  width: 50%;
  max-width: 800px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6);
  text-align: left; /* Left-align the form content */
}

form {
  display: block;
  margin-top: 0em;
  unicode-bidi: isolate;
}

label {
  color: white; /* Make the labels white */
}

#id_username_helptext,
.form-text ul,
#id_password2_helptext {
  color: white !important; /* Make the help text white */
  opacity: 0.6; /* Set opacity to 60% */
}

.btn {
  background-color: #fa8f32;
  border: 1px solid #fa8f32;
  color: white; /* Make the button text white */
}

.btn:hover {
  background-color: #ffac63;
  border: 1px solid #fa8f32;
}

.btn:active {
  background-color: transparent;
  border: 1px solid #fa8f32;
  color: #fa8f32;
}

p {
  color: white; /* Make the paragraph text white */
  text-align: left; /* Left-align the paragraph text */
}

p a {
  color: #fa8f32; /* Make the link color stand out */
  font-weight: bold; /* Make the link bold */
  text-decoration: underline; /* Underline the link */
}

p a:hover {
  color: #ffac63; /* Change the link color on hover */
}
