@import url(https://fonts.googleapis.com/css?family=Montserrat:300);

body {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
}

body #login{
  background: #000;
  background: linear-gradient(90deg, rgb(97, 98, 97) 0%, rgb(0, 0, 0) 50%);
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;      
}

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.form {
  background: #FFFFFF;
  max-width: 600px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-form{
  margin-top: 20px;
}

.form input {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}

.form button {
  text-transform: uppercase;
  background: #000;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.form button:hover,.form button:active,.form button:focus {
  background: #fff;
  color: #000;
  border: #000 1px solid;
}

.nav-link{
  cursor: pointer;
}

.nav-link:hover{
  color: #000 !important;
  background-color: #fff !important;
}