* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-color: #042331;
  color:#eee;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.form-container {
  background-color: #042331;
  color: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 40px 100px 70px #050d25;
}
.schoolTitle {
  color: lightgray;
}
.regForm {
  border-top: 1px solid #414143;
  padding-top: 10px;
}
.formLabels {
  color: lightgray;
  font-size: 14px;
}
h2 {
  text-align: center;
  margin-bottom: 5px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  width: 100%;
  background-color: #600000;
  color: lightgray;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: lightgray;
  color: #600000;
}

.switch {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.switch a {
  color: #940404;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.forgot-password {
  text-align: right;
  margin-top: 10px;
  font-size: 14px;
}

.forgot-password a {
  color: #940404;
  text-decoration: none;
}

@media screen and (max-width: 500px) {
  .form-container {
    padding: 20px;
  }
}
