﻿body {
  background-color: #E05306;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

#registration-form {
  margin-bottom: 10vh;
}

.align-center {
  margin: 0 auto;
}


input {
  width: 40%;
  padding: 10px 10px 10px 20px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}



#message {
  display: none;
  background: #f1f1f1;
  color: #000;
  position: relative;
  padding: 1%;
  margin-top: 1%;
  border-radius: 10px;
  width: 40%;
  text-align: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}


/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}


/* Add styles for the select dropdown */
select {
  width: 28%;
  padding: 1%;
  margin: 1%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  /* Background color */
  color: #555;
  /* Text color */
}

/* Style the options within the dropdown */
select option {
  background-color: #fff;
  color: #555;
}

.register {

  color: white;
  font-size: 20;
  font-weight: bold;





}



@media only screen and (max-width: 600px) {
  select {
    width: 80%;
  }

  input {
    width: 80%;
  }


}