@import url(https://fonts.googleapis.com/css?family=Montserrat);
body {
  background: linear-gradient(to bottom right, rgb(255 255 255 / 90%), rgb(83 79 87 / 90%)), url(../../assets/img/security-page.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

.clear {
  clear: both;
}

*:focus {
  outline: none;
}

#card {
  overflow: hidden;
  width: 400px;
  height: 500px;
  background: linear-gradient(to bottom right, rgb(0 0 0 / 90%), rgb(71 48 90 / 90%)), url(../../assets/img/security-page.jpg);
  background-size: cover;
  background-position: 30% center;
  margin-left: calc(50vw - 200px);
  margin-top: calc(50vh - 250px);
  position: relative;
  box-shadow: 0px 10px 20px #666;
}
#card .navItems {
  padding-top: 40px;
}
#card .navItems ul {
  list-style: none;
  width: 100%;
  margin-left: 15%;
  -webkit-margin-before: 0;
  -webkit-padding-start: 0;
}
#card .navItems ul li {
  display: inline-block;
  margin-left: 0px;
  padding-bottom: 5px;
  text-transform: uppercase;
  color: rgba(204, 204, 204, 0.5);
  font-family: "Montserrat", sans-serif;
  transition: all 1s;
  position: relative;
}
#card .navItems ul li:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 0%;
  left: -5%;
  background-color: #1b66ea;
  transition: all 0.5s;
}
#card .navItems ul li:first-child {
  margin-right: 7%;
}
#card .navItems ul li:hover {
  color: rgba(204, 204, 204, 0.7);
}
#card .navItems ul li.selected {
  color: white;
}
#card .navItems ul li.selected:after {
  width: 110%;
}
#card .scrollWrapper {
  width: 200%;
  transition: all 1s;
}
#card .scrollWrapper.second {
  transform: translateX(-50%);
}
#card #signIn {
  transition: all 0.5s;
  display: inline-block;
  width: 49.5%;
}
#card #signUp {
  transition: all 0.5s;
  display: inline-block;
  width: 49.5%;
}
#card .content {
  padding-top: 50px;
}
#card .content button {
  width: 77%;
  margin: 50px auto;
  background: #1b66ea;
  color: white;
  display: block;
  border-radius: 20px;
  border: 0px solid transparent;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  transition: all 0.5s;
}
#card .content button:hover {
  transform: scale(1.05, 1.05);
}
#card .content input {
  display: block;
  width: 70%;
  margin: 0 auto;
  border-radius: 20px;
  border: 0px solid transparent;
  background: rgba(221, 221, 221, 0.15);
  padding: 5px 15px;
  line-height: 1.5rem;
  font-size: 0.8rem;
  color: white;
  font-family: "Montserrat", sans-serif;
  transition: all 0.5s;
}
#card .content input:focus {
  background: rgba(221, 221, 221, 0.3);
}
#card .content input[type=checkbox] {
  display: inline-block;
  width: 10%;
  margin-left: 15%;
  margin-top: 20px;
  margin-bottom: 20px;
}
#card .content input[type=checkbox] ~ label {
  display: inline-block;
  width: 60%;
  margin: 10px -10px;
  color: white;
  text-transform: none;
}
#card .content label {
  font-family: "Montserrat", sans-serif;
  display: block;
  width: 70%;
  margin: 15px auto 10px;
  color: white;
  color: rgba(204, 204, 204, 0.7);
  font-size: 0.63rem;
  text-transform: uppercase;
}
#card .footer {
  position: absolute;
  bottom: 0;
  width: 80%;
  left: 10%;
  border-top: 1px solid rgba(204, 204, 204, 0.2);
  padding: 10px 0 20px;
}
#card .footer p {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  cursor: pointer;
  color: rgba(204, 204, 204, 0.5);
  font-size: 0.7rem;
  transition: all 0.5s;
}
#card .footer p:hover {
  color: rgba(204, 204, 204, 0.7);
}

.feedback-container {
    width: 70%;
    margin: 0 auto;
 }

 .feedback-container .alert {
    padding: 5px 10px;
    background: #fff;
    border-radius: 5px;
 }

  .feedback-container .alert.alert-danger{
    color: red;
  }

    .feedback-container .alert.alert-info{
        color: green;
    }