body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #182b49;
  font-family: 'Roboto', sans-serif;
}

h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.2rem;
  color: #ffffff !important;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 0.5rem;
}

.bigButton {
  background-color: #c69214;
  color: #ffffff;
  padding: 0.7rem 2.5rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.bigButton:hover {
  background-color: #ffcc00;
}

.toggleContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  background-color: #c69214;
  border-radius: 34px;
  margin-top: 0.5rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffcc00;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #ffcc00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.rememberLabel {
  font-size: 1.1rem;
  color: #ffffff;
}

.switch input:checked + .slider::before {
  bottom: 7px; /* Adjusted position */
}

.onText,
.offText {
    position: relative;
    color: #ffffff;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 8px;
    text-align: center; /* Center the text horizontally */
    width: 100%; /* Ensure the text takes full width */
}

.switch input:checked + .slider .onText {
  display: block;
  right: 5px;
  left: auto;
}

.switch input:not(:checked) + .slider .offText {
  display: block;
  left: 5px;
  right: auto;
}
