#home-page * {
  font-family: 'Lato' !important;
}

#home-page {
  background-image: url('../images/home-background.svg');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 30%;
}

#home-page .main-container {
  max-width: 500px;
  padding: 0px 60px 70px 60px;
  margin-top: 8%;
  border: 1px solid #c2c0c2;
  border-top: solid 5px #2c3346;
  border-radius: 5px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.09);
  background-color: white;
}

#home-page .home-navbar {
  background-color: #2c3346;
  margin-bottom: 15px;
}

#home-page .home-navbar-text {
  font-weight: bold;
  color: #ffffff;
  margin-left: 10px;
}

#home-page .workast-logo {
  width: 30px;
  height: 30px;
}

#home-page .page-title {
  margin-top: 32px;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
}

#home-page .teams {
  list-style: none;
  margin: auto;
  padding: 0;
  text-align: left;
  width: 300px;
}

#home-page .teams .login-item {
  display: flex;
  flex-direction: row;
  padding: 10px 10px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  font-family: Lato;
  font-weight: 500;
  font-size: 20px;
  color: #8C8C8C;
  line-height: 24px;
  height: 64px;
  align-items: center;
}

#home-page .teams .teams-separator {
  margin: auto;
  width: 201px;
  height: 0px;
  border: 0.5px dashed #8C8C8C;
}

#home-page .teams .login-item:hover {
  background: #eee;
}

#home-page .teams .login-item .item-image {
  height: 30px;
  clip-path: circle(15px at center);
}

#home-page .teams .login-item .item-content {
  width: 100%;
  padding: 0 10px;
  display: block;
  justify-content: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#home-page .tos {
  color: #8c8c8c;
  font-size: 16px;
}

/* Overriding bootstrap styles that adds images and green borders to valid fields */
#home-page .form-control.is-valid:focus, .was-validated :valid.form-control {
  border-color:#ced4da !important;
  background-image: inherit !important;
  box-shadow:inherit !important;
}

/* Media queries */
@media all and (max-width: 767px) {
  #home-page {
    background: none;
  }
  #home-page .home-navbar {
    margin-bottom: 21px;
    display: none;
  }

  #home-page .main-container {
    padding-bottom: 21px;
    border: none;
    box-shadow: none;
    padding-left: 10%;
    padding-right: 10%;
  }

  #home-page .lg-header, .home-navbar-lg {
    display: none;
  }

  #home-page .page-title {
    margin-top: 60px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
  }

  #home-page .teams {
    border: 1px solid #E9E9E9;
    box-sizing: border-box;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.09);
    border-radius: 6px;
  }
}

@media all and (min-width: 768px) {
  #home-page .sm-header, .home-navbar-sm {
    display: none;
  }
}
