
/* availability and navbar formatting*/

label {
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
}
input[type="checkbox"] {
  margin-right: 10px;
}

h1 {
  text-align: center;
}
.navbar ul {
  list-style-type: none;
  background-color: rgb(99,0,49);
  padding: 0px;
  margin: 0px;
  overflow: hidden;
}
.navbar a {
  color: white;
  text-decoration: none;
  padding: 15px;
  display: block;
  text-align: center;
}
.navbar a:hover {
  background-color: rgb(207,69,32);
}
.navbar li {
  float: left;
}
main {
  margin: 20px;
}

/* sign up formatting */

*{
  margin: 5;
  padding: 0;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
}

.form-box {
  width: 90%;
  max-width: 450px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: rgb(99,0,49);
  padding: 50px 50px 70px;
  text-align: center;
}

.form-box h1{
  font-size: 25px;
  margin-bottom: 60px;
  color: white;
  position: relative;
}

.form-box h1::after{
  content: '';
  width: 30px;
  height: 4px;
  border-radius: 3px;
  background: white;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%)
}

.input-field{
  background: white;
  margin: 15px 0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  max-height: 65px;
  transition: max-height 0.5s;
  overflow: hidden;
}

input{
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 18px 15px;
}
form p a{
  text-decoration: underline;
  color: white;

}
.btn-field{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.btn-field button {
  flex-basis: 48%;
  background: rgb(207,69,32);
  color: white;
  height: 40px;
  border-radius: 20px;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: background 1s;
}

.input-group{
  height: 290px;
}

.btn-field button.disable {
  background: gray;
  color: white;
}

.wrapper {
  width: 78%;
  margin: 15px 0;
  border-radius: 3px;
  display: flexbox;
  align-items: center;
  max-height: 65px;
  position:absolute;
  top: 46%;


}

.wrapper textarea {
  width: 100%;
  height: 59px;
  padding: 15px;
  outline: none;
  resize: none;
  font-size: 16px;
  margin-top: 20px;
  border-radius: 5px;
  max-height: 120px;

}

textarea:is(:focus, :valid) {
  padding: 14px;
}

textarea::-webkit-scrollbar {
  width: 0px;
}