* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  font-family: 'Courier New', Courier, monospace;
}

.register-section {
  width: 100%;
  height: 100vh;
  background-image: url(tundrabackground.png);
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  display:flex;
  justify-content: center; 
  align-items: center; 
}

.hero {
  display: flex;
  margin: auto;
  text-align: center;
  
}

.hero-content {
  min-width: 65vh;
  margin: 3em;
  
}

.title {
  text-align: center;
  margin-bottom: 15px;

}

.title img {
  height: 23em;
  padding-right: 5px;
}



form {
  display: flex;
  border: solid 1px #ffffff;
  margin: 0px 0px 24px 0px;
  overflow: hidden;
  width: 600px;

  justify-content: center;  
  align-items: center;      
  margin: auto;
  text-align: center;
  padding-left: 3px;
}

form input{
 background: #000000;
 border: none;
 font-size: 21px;
 outline: none;
 flex: 1;
color: #FFFFFF;
width: 100%;
padding-left: 10px;


}

::placeholder {
  color: #ffffff;
  font-size: 18px;
}



form button{
  background-color: #000000;
  border: none;
  outline: none;
  cursor: pointer;
  color: #FFFFFF;
  display: inline-flex;
  align-items:end;
  border-left: 1px solid #ffffff;
}

form button:hover{
  background-color: #ff00ff;
}

span {
  color: #ff00ff;
  display: block;
  text-align: center;
  font-size: 15px;
  margin-top: 10px;

}

@media (max-width: 768px) {
  .register-section {
    padding: 20px; 
    background-position: left;
 
  }

  .hero {
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    background-color: #000000;
  }

  .hero-content {
    margin: 2rem; 
    min-width: auto; 
  }

  .title {
    margin-bottom: 10px;
  }


.title img {
  height: 9em;
}

form button img {
  width: 70px;
  background-color: #000000;
  
}

form button {
  border-left: 1px solid #ffffff;
}

form button:hover {
  background-color: #ff00ff;
}

  form {
    width: 100%; 
    max-width: none; 
    border: 1px solid #ffffff;
    box-shadow: none;
  }



  form input {
    font-size: 14px;

  }

  span {
    font-size: 14px; /* Smaller text for better readability */
  }
}
