* {
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #100839;
  color: #fff;
  margin: 0;
  padding: 0;
}



.container {
  max-width: 600px;
  width: 80%;
  margin: 3rem auto 3rem auto;
  background-color: #1f1359;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.container p a {
  color: white;
  text-decoration: underline;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}

input,
select {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #004080;
  color: white;
  font-size: 16px;
  box-sizing: border-box;
}

input::selection {
  background-color: #100839;
}

.passwordDiv {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
}

.passwordDiv i {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
}

/*.passwordDiv i::before{
  margin: auto;
  position: absolute;
  top: 1rem;
  left: 0;
}*/

#passwordRepeatMessage {
  color: red;
  display: none;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background-color: #0074D9;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

button:hover {
  background-color: #005fa3;
}

.success-message {
  text-align: center;
  margin-top: 20px;
  color: #2ecc71;
  font-weight: bold;
}

.error-message {
  text-align: center;
  margin-top: 20px;
  color: #ff4d4d;
  font-weight: bold;
}

#passwordResetLink {
  text-decoration: underline;
  cursor: pointer;
}

footer {
  background-color: #1f1359;
  color: #f0f0f0;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

@media (width < 768px) {
  .container {
    padding: 1.5rem;
  }
}