body {
  font-family: "Roboto", sans-serif;
}

nav {
  border-bottom: 2px solid blue;
  box-shadow: 1px 7px 10px #ccc;
}
nav .logo {
  transition: 0.5s;
}
nav .logo:hover {
  color: blue;
  transform: scale(1.1);
}
nav .nav-link {
  transition: 0.5s;
  font-size: 18px;
}
nav .nav-link:hover {
  color: blue;
  transform: scale(1.1);
}

ul {
  list-style: none;
}

.hught {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  background-color: rgba(0, 0, 0, 0.608);
  max-width: 100%;
  padding: 20px;
  border-radius: 10px;
}

input {
  width: 500px;
  padding: 10px 4px;
  margin-bottom: 7px;
  border: none;
  border-bottom: 2px solid blue;
  background-color: rgba(233, 233, 233, 0.4431372549);
  border-radius: 5px;
  outline: none;
  color: white;
}

input::-moz-placeholder {
  color: rgb(237, 237, 237);
}

input::placeholder {
  color: rgb(237, 237, 237);
}

@media (max-width: 600px) {
  input {
    width: 300px;
  }
}
footer {
  border-top: 2px solid blue;
  box-shadow: 1px -7px 10px #ccc;
  padding: 30px 15px;
}
footer span {
  color: blue;
}/*# sourceMappingURL=register.module.css.map */