@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.border-blue {
  border: 1px solid blue;
}

.border-red {
  border: 1px solid red;
}

.border-green {
  border: 1px solid green;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

.mynav {
  height: 74px;
}

.login-button {
  background: #e6e7e7;
  border: 1px solid gray;
  border-radius: 5px;
  color: rgb(115, 115, 115);
  padding: 20px 50px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  font-size: 3rem;
  margin: 150px 2px;
  cursor: pointer;
  box-shadow: 1px 1px 15px -1px #424242;
}
.login-button:hover {
  background: #fafbfb;
  color: rgb(76, 76, 76);
}

.mynav {
  background-color: #068BBF;
}

input {
  font-size: 2rem;
  font-weight: 500;
}

.main-container {
  height: 100dvh;
  background-color: #70DEFF;
}
.main-container input {
  font-size: 2rem;
  font-weight: 500;
}

label {
  color: rgb(73, 73, 73);
  font-size: 1.2rem;
  margin-left: 0.8em;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.login-form {
  color: black;
  background: rgb(238, 238, 238);
  padding: 2rem 0;
  border-radius: 1rem;
  width: 35rem;
  margin: 3rem auto;
}
.login-form input {
  font-size: 1.5rem;
  font-weight: 600;
}
.login-form input:focus {
  font-size: 1.5rem;
  font-weight: 600;
}

.result {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background: #70DEFF;
  border-radius: 5px;
  border: rgb(255, 255, 255) 1px solid;
}
.result img {
  height: 90px;
  width: 90px;
}

.input-personnummer {
  font-weight: 600;
  width: 15rem;
  margin-right: 2rem;
  color: rgb(70, 70, 70);
  border-radius: 15px;
  box-shadow: inset -3px -3px 7px rgba(255, 255, 255, 0.4509803922), inset 3px 3px 5px rgb(177, 178, 180);
  font-size: 2rem;
}

.container-nedre {
  margin: 0;
  padding: 0;
  background-color: #70DEFF;
  height: 92dvh;
}

.container-nav {
  background-color: #068BBF;
  border-bottom: 1px solid rgb(153, 153, 153);
}

.quest {
  font-size: 3rem;
  color: #424242;
}

.wrapper-input {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 420px) {
  .wrapper-input {
    margin-top: 4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .login-form {
    width: 25rem;
    margin: 2rem auto;
  }
  .login-form input {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .login-form input:focus {
    font-size: 1.5rem;
    font-weight: 600;
  }
}/*# sourceMappingURL=style.css.map */