@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  /* padding: 0; */
  margin: 0;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "Montserrat", sans-serif;
}

nav {
  background: #0082e6;
  display: flex;
  justify-content: space-around;
  height: 10vh;
  align-items: center;
}

label.logo {
  /* margin-left: 40px; */
  color: white;
  font-size: 25px;
  font-weight: bold;
}

nav ul li {
  display: inline-block;
  /* line-height: 80px; */
  margin: 5px;
}

nav ul li a {
  color: white;
  font-size: 16px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}

.navItem.active,
.navItem:hover {
  background: #1b9bff;
  transition: .5s;
}

.profile {
  background: #0a65aa;
  color: white;
  font-size: 16px;
  /* text-transform: uppercase; */
  padding: 7px 13px;
  border-radius: 3px;
}

a {
  color: white;
}


label {
  font-size: 11pt;
}

#forgot-pass {
  color: #0a65aa;
  font-family: "Raleway", sans-serif;
  font-size: 10pt;
  margin-top: 3px;
  text-align: right;
}

#card {
  background: #fbfbfb;
  border-radius: 8px;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.65);
  height: 410px;
  margin: 6rem auto 8.1rem auto;
  width: 329px;
}

#card-content {
  padding: 12px 44px;
}

#card-title {
  /* font-family: "Raleway Thin", sans-serif; */
  padding-bottom: 23px;
  padding-top: 13px;
  text-align: center;
}

#signup {
  color: #0a65aa;
  font-family: "Raleway", sans-serif;
  font-size: 10pt;
  margin-top: 16px;
  text-align: center;
}

.signButton:hover {
  color: red;
}

#submit-btn {
  background: #0a65aa;
  border: none;
  border-radius: 21px;
  box-shadow: 0px 1px 8px #1b9bff;
  cursor: pointer;
  color: white;
  font-family: "Raleway SemiBold", sans-serif;
  height: 42.3px;
  margin: 0 auto;
  margin-top: 50px;
  transition: 0.25s;
  width: 153px;
}

#submit-btn:hover {
  box-shadow: 0px 1px 18px #1b9bff;
}

.form {
  align-items: left;
  display: flex;
  flex-direction: column;
}

.form-border {
  background: #0a65aa;
  height: 1px;
  width: 100%;
}

.form-content {
  background: #fbfbfb;
  border: none;
  outline: none;
  padding-top: 14px;
}

.menu-toggle {
  display: none;
}

/* Mobile responsive styling */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: auto;
  }

  .nav-header {
    display: flex;
    align-items: center;
    justify-content: center;
    /* center the whole group in nav */
    gap: 10px;
    /* space between logo and button */
  }

  .logo {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    display: block;
    text-align: left;
    margin: 5px 0;
  }

  .profile {
    align-self: stretch;
    text-align: center;
    margin-top: 10px;
  }
}