#password-reset-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

#password-reset-wrapper {
  text-align: center;
  width: min(1000px, 95%);
  background-color: white;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#password-reset-header {
  position: relative;
  background-color: #475569;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 42px;
  padding-bottom: 42px;
}

#password-reset-logo {
  position: absolute;
  left: 25px;
  top: 33px;
}

#password-reset-logo img {
  width: 56px;
  height: 56px;
}

#home-languages {
  position: absolute;
  right: 40px;
  top: 40px;
}

.home-language-button {
  background-color: transparent !important;
}

.home-language-button:hover, .home-language-button:focus {
  background-color: #404c5e !important;
}

#home-languages .dropdown-menu {
  background-color: #475569 !important;
}

#home-languages .dropdown-toggle {
  border: 1px solid #53627a !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 800px) {
  #password-reset-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #password-reset-logo {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    left: 0;
  }

  #password-reset-logo img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  #home-languages {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    right: 0;
    margin-top: 20px;
  }
}

form {
  padding: 32px;
}

.dark input[type = "email"] {
  background-color: #0d1117 !important;
  color: white !important;
  -webkit-text-fill-color: white;
  border: 1px solid #cecece !important;
}

.dark input[type = "email"]::placeholder {
  color: #828282 !important;
  -webkit-text-fill-color: #828282;
}

.light input[type = "email"] {
  background-color: #eaeaea !important;
  color: black !important;
  -webkit-text-fill-color: black;
  border: 1px solid #4c4c4c !important;
}

.light input[type = "email"]::placeholder {
  color: #949494 !important;
  -webkit-text-fill-color: #949494;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
  -webkit-background-clip: text;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #23232329;
}

.form-label {
  text-align: left;
  width: 100%;
  font-size: 20px;
}

.form-check-input {
  border-color: white !important;
  text-align: center !important;
}

.form-check-label {
  width: 100%;
  text-align: left;
}

#send {
  width: max(150px, 50%);
  background-color: #4272f9;
  color: white;
  margin-top: 30px;
  padding: 10px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  transition: 0.5s ease;
}

#send:hover {
  filter: brightness(90%);
}