
body {
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(to bottom, rgb(72, 24, 87), #000);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}



.form-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
}
input::placeholder{
color: #fff !important;
font-size: 13px !important;
}
.form-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.form-container p {
  opacity: 0.7;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-control {
  border-radius: 50px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  box-shadow: none;

}

.btn-primary-1 {
  background:linear-gradient(135deg, rgba(128, 0, 128, 0.6), rgba(75, 0, 130, 0.6));
  color: white;
  border-radius: 50px;
  transition: background-color 0.3s ease-in-out;
}



.form-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.form-text strong {
  color: #fff;
  
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.toggle-box {
  appearance: none;
  width: 32px;
  height: 16px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  position: relative;
}

.toggle-box:checked {
  background-color: #30A2FF;
}

.toggle-box:checked::after {
  transform: translateX(16px);
  transition: 0.4s ease-in-out;
}

.toggle-box::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #fff;
}
