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

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

  /*nav {
    background-color: #112240;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }
  
  nav a{
    text-decoration: none;
  }
  
  nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff9933;
    z-index: 1001;
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }
  
  .nav-toggle span {
    height: 3px;
    width: 25px;
    background: #ff9933;
    margin: 4px 0;
    transition: 0.4s;
    border-radius: 2px;
  }
  

  #nav-toggle:checked + .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 10px);
  }
  #nav-toggle:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle:checked + .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -9px);
  }
  

  ul.menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
  }
  
  ul.menu li {
    position: relative;
  }
  
  ul.menu li a {
    color: #fff;
    transition: color 0.3s;
    text-decoration: none;
  }
  
  ul.menu li a:hover {
    color: #ff9933;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #112240;
    min-width: 200px;
    top: 100%;
    left: 0;
    z-index: 999;
  }
  
  .dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  #nav-toggle:checked ~ ul.menu {
    backdrop-filter: blur(1000px);
  }
  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }
  
    ul.menu {
      flex-direction: column;
      background-color: #112240;
      position: fixed;
      top: 0;
      right: -250px;
      width: 250px;
      height: 100%;
      padding: 0.5rem;
      margin: 0;
      transition: right 0.3s ease-in-out, opacity 0.3s ease;
      opacity: 0;
      z-index: 1000;
    }
  
    
    #nav-toggle:checked ~ ul.menu {
      right: 0; 
      opacity: 1;
    }
  
    ul.menu li {
      padding: 1rem 0;
      border-bottom: 1px solid #444;
    }
  
    .dropdown-content {
      position: static;
      background: none;
    }
  
    .dropdown:hover .dropdown-content {
      display: none;
    }
  
    .dropdown-content a {
      padding-left: 2rem;
    }
  }*/

.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;
  }
}