* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

section.custom-login {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  z-index: 0;
  padding: 0 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: "Montserrat";
}
section.custom-login::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.814);
}

section.custom-login #login {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 618px;
  border-radius: 15px;
  background-color: #0d2120;
  padding: 128px 61px 30px 61px;
  margin: 0;
  z-index: 1;
}

/* Logo */
.custom-login .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: 35px 40px;
  border-radius: 20px;
  background-color: #00ffff;
}
.custom-login .logo-container img {
  width: 159px;
  height: 127px;
}

.custom-login #login h1 {
  font-family: "Montserrat";
  font-size: 36px;
  line-height: 42px;
  color: #00ffff;
  margin-bottom: 15px;
}
.custom-login #login p {
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  font-family: "Montserrat";
  margin-bottom: 20px;
}

.custom-login #login .login-error {
  color: #ff0000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.custom-login #login label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.custom-login #login input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 5px;
}
.custom-login #login input,
.custom-login #login textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 5px;
  font-weight: 400;
}

.custom-login #login textarea {
  max-height: 111px;
}

.custom-login #login input::placeholder,
.custom-login #login textarea::placeholder {
    color: #c3c3c3;
}

/* remember button */
.custom-login #login .remember-me {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-login .remember-me input[type="checkbox"]:checked {
  content: "\2713"; /* Voegt een vinkje toe */
  color: #fff;
  background-color: #007bff; /* Achtergrondkleur van de checkbox */
  text-align: center;
  line-height: 20px; /* Centreert het vinkje verticaal */
}

.custom-login #login input[type="submit"] {
  font-family: OpenSansBold;
  width: 100%;
  border: none;
  padding: 18px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  background: #00ffff; /* Background color of the login button */
  color: #0d2120; /* Text color of the login button */
  transition: background-color 0.2s ease-in-out;
  margin-top: 3px !important;
  cursor: pointer;
}
.custom-login #login input[type="submit"]:hover {
  background-color: #32a3a3;
}

/* forgot password */
.custom-login .forgot-password {
  margin-top: 20px;
  z-index: 1;
}
.custom-login .forgot-password a {
  font-size: 14px;
  color: white;
}

.custom-login a.lid-worden {
  margin-top: 20px;
  text-align: center;
  color: white;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
  screen and (max-width: 1024px) {
  /* login container */
  .custom-login #login {
    padding: 128px 50px 30px 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .custom-login #login {
    padding: 105px 30px 30px 30px !important;
  }
  /* Logo */
  .custom-login .logo-container {
    padding: 28px 16px;
  }
  .custom-login .logo-container img {
    width: 118px;
    height: 95px;
  }

  .custom-login #login input, .custom-login #login textarea { 
    padding: 10px 18px;
  }
}
