body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Helvetica;
}

.login-container {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 400px;
  display: flex;
  margin-top: 100px;
  flex-direction: column;
  align-items: center;
}

.login-container h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.login-container form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.login-container label {
  font-size: 16px;
  margin-bottom: 5px;
}

.login-container input[type="email"],
.login-container input[type="password"] {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  width: 95%;
}

.login-container input[type="submit"] {
  background-color: #48009a;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  width: 100%;
  height: 50px;
  position: relative; /* Add relative positioning for the pseudo-element */
  overflow: hidden; /* Hide the glowing overflow */
}

.login-container input[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(72, 0, 154, 0.2); /* Adjust the color and opacity as needed */
  border-radius: 10px;
  transform: scale(1.5);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.login-container input[type="submit"]:hover::before {
  transform: scale(2);
  opacity: 1;
}

#error-message {
  color: red;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

/* Styling for the "Show Password" toggle */
.password-container {
  position: relative;
}

.password-container input[type="checkbox"] {
  position: absolute;
  left: 35%;
  top: 80%;
  cursor: pointer;
}

.password-container label[for="showPassword"] {
  margin-right: 5px;
  cursor: pointer;
}

/* Styling for the "Remember Me" toggle */
.remember-container {
  margin-top: 10px; /* Add some space between the "Show Password" and "Remember Me" toggles */
}

.remember-container input[type="checkbox"] {
  cursor: pointer;
}

.remember-container label[for="rememberMe"] {
  margin-left: 5px;
  cursor: pointer;
}

/* Styling for the "Show Password" toggle */
.password-container {
  position: relative;
}

.password-container label[for="showPassword"] {
  margin-right: 5px;
  cursor: pointer;
}

.password-container input[type="text"] {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  width: 95%;
}

/* Styles for screen sizes from 769px to 1024px (Small screens, laptops) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('banner-mobile.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Helvetica;
}
  
  .login-container {
    max-width: 80%; /* Increase the maximum width for larger screens */
    border-radius:40px;
    padding: 40px;
  }

  .login-container h1 {
    font-size: 50px; /* Increase the font size for headings */
    margin-top:40px;
    margin-bottom: 40px;
      
  }

  .login-container label {
  font-size: 36px;
  margin-bottom: 10px;
  margin-top:10px;
}

.login-container input[type="email"],
.login-container input[type="password"] {
  padding: 10px;
  margin-bottom: 30px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 36px;
  width: 95%;
}

.login-container input[type="submit"] {
  background-color: #48009a;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 15px;
  font-size: 36px;
  cursor: pointer;
  width: 30%;
  height: 70px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.password-container input[type="password"] {
    font-size: 36px;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 20px;
  }
}