body {
  height: 100%;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  color: white;
}
.custom-input {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: #fff;
  padding: 10px;
  margin-bottom: 15px;
}
.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
#starter-login-form-container {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;  
  margin: 0 auto; 
}
#prerecorded-login-form {
  width: 80%;
  max-width: 900px;
}
.starter-button {
  border-radius: 8px;
  width:100px;
  padding: 10px 20px;
  font-weight: 600;
  margin-top: 10px;
}
.starter-button-primary:hover, 
.starter-button-primary:not(:disabled):not(.disabled):active, 
.starter-button-primary.focus, 
.starter-button-primary:focus {
  color: #1a4091;
  background-color: #fff;
  border-color: #1a4091;
  font-size: .8rem;
  border-radius: 8px;
  box-shadow: none;
}
.starter-button-secondary {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.starter-button-secondary:hover, 
.starter-button-secondary:not(:disabled):not(.disabled):active, 
.starter-button-secondary.focus, 
.starter-button-secondary:focus {
  color: #1a4091;
  background-color: #fff;
  border-color: #1a4091;
  font-size: .8rem;
  border-radius: 8px;
  box-shadow: none;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.436);
  z-index: 2;
}
 .login-div {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.330);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;             
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;                
  max-width: 500px; 
  margin: 0 auto;             
  padding: 25px;
  min-height: 400px; 
  color: #fff; 
}
.starter-input:focus {
  background: rgba(255, 255, 255, 0.3) !important; 
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  outline: none; 
}
.page {
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.starter-input {
  background: rgba(255, 255, 255, 0.2)!important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: #fff; 
  padding: 12px 15px;
  margin-bottom: 15px;
  width: 100%; 
  box-sizing: border-box; 
}
.starter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.starter-input option {
  color: #000 !important;           
  background-color: #fff !important;
}
.form-control, 
.form-select {
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  width: 100%; 
}

/* Mobile devices */
@media (max-width: 576px) {
  .login-div {
    padding: 20px 15px;
    border-radius: 20px;
    min-height: 300px;
  }
  .starter-input {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}
/* Tablets (iPad Mini, iPad, etc.) */
@media (max-width: 1024px) {
  .login-div {
    max-width: 90%;
    padding: 25px 20px;
  }
}
@media (min-width: 1200px) {
  .login-div {
    max-width: 500px; 
  }
}
 /* iPad Mini (768 - 819px) */
@media (min-width: 768px) and (max-width: 819px) {
  .login-div {
    max-width: 70%;
  }
}
/* iPad Air (820 - 1023px) */
@media (min-width: 820px) and (max-width: 1023px) {
  .login-div {
    max-width: 550px;
  }
}
/* iPad Pro (1024 - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
  .login-div {
    max-width: 550px;
  }
}

/* Buttons */
.confirm-button {
  border-radius: 15px;
  width:200px;
  padding: 10px 20px;
  font-weight: 600;
  margin-top: 10px;
}
.starter-button {
  border-radius: 15px;
  width:100px;
  padding: 10px 20px;
  font-weight: 600;
  margin-top: 10px;
}
.starter-button-primary {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  border-radius: 8px;
}
.starter-button-secondary {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.starter-label {
	font-size: .8rem;
}
.back-button {
  position: absolute;
  top: 15px;
  left: 20px;   
  font-size: 1.8rem;
  color: #ffffff;
  text-decoration: none;
  z-index: 1000;
  transition: color 0.2s ease-in-out;
}

.back-button:hover {
  /* color: #007bff;  */
  transform: scale(1.05);
  color: #fff;
}