@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,700,900&display=swap");
* {
  scroll-behavior: smooth;
}

nav {
  display: -ms-grid;
  display: grid;
  font-family: Montserrat;
  list-style: none;
}

nav #avatar {
  height: 50px;
  width: auto;
  margin: auto;
}

nav .login {
  background: transparent;
  border: 2px solid grey;
  color: grey;
  padding: 5px 20px;
  border-radius: 50px;
}

nav .login:hover {
  background: #4375ff;
  color: white;
  border: 2px solid transparent;
}

nav .signin {
  background: #4375ff;
  border: 2px solid transparent;
  color: white;
  padding: 5px 20px;
  border-radius: 50px;
}

nav .signin:hover {
  background: transparent;
  border: 2px solid #4375ff;
  color: #4375ff;
}

.row {
  font-family: Montserrat;
}

.row .card {
  border-radius: 0px;
}

.row .card .card-title {
  font-weight: 600;
}

.row .card .card-text {
  font-weight: 300;
}

.row .card .btn {
  font-weight: 300;
  border: none;
  border-radius: 0px;
}

.jumbotron {
  font-family: Montserrat;
}

.jumbotron span {
  color: #4285f4;
}

.container-login {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  width: 300px;
  background: #f1f1f1;
  z-index: 10000000000;
  border-radius: 5px;
  font-family: Montserrat;
  display: none;
}

.container-login img {
  position: relative;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20%;
  height: auto;
}

.container-login form {
  position: relative;
  top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 20px;
}

.container-login form label {
  color: #272727;
}

.container-login form input {
  border: none;
  border: 1px solid #cfcfcf;
}

.container-login i {
  color: #007bff;
  font-size: 1.5em;
  float: right;
  padding: 10px;
  cursor: pointer;
}

.container-signin {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  width: 300px;
  background: #f1f1f1;
  z-index: 10000000000;
  border-radius: 5px;
  font-family: Montserrat;
  display: none;
}

.container-signin img {
  position: relative;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20%;
  height: auto;
}

.container-signin form {
  position: relative;
  top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 20px;
}

.container-signin form label {
  color: #272727;
}

.container-signin form input {
  border: none;
  border: 1px solid #cfcfcf;
}

.container-signin i {
  color: #007bff;
  font-size: 1.5em;
  float: right;
  padding: 10px;
  cursor: pointer;
}

.hide {
  display: block;
}
/*# sourceMappingURL=main.css.map */