* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffa600;
}
.title-container{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 15vh;
  /*border: 2px solid #007bff;*/
  background-color: #F9E79F;
}


.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 78vh;
  /*border: 2px solid red;*/
}

.login-form {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 5px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px
}

button:hover {
  background-color: #0056b3;
}

select {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  
  background-color: #fff;
  width: 150px; /* Adjust width as needed */
}

/* Style for option elements */
option {
  padding: 10px;
  font-size: 16px;
}