@media screen {
  form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 60rem;
    padding: 4rem 1rem;
    padding-top: .5rem;
    margin: 0 auto;
  }

  form .norwegiankings-title {
    margin: 30px auto;
  }

  form input:focus,
  form textarea:focus {
    outline: 0;
  }

  form .form-item{
    padding: 0;
    width: 100%;
    margin: 0 0 1em;
  }

  form label {
    font-size: .75em;
  }

  form input:not([type=checkbox]):not([type=radio]),
  form textarea,
  form select {
    width:100%;
    background-color: transparent;
    border: 1px solid rgb(244, 244, 244);
    border-radius: 35px;
    padding: 1rem;
  }

  form .form-required:after {
    content: '*';
    font-size: 1em;
    background: transparent;
    position: relative;
    top: .2em;
  }

  form .form-type-item{
    padding: 1rem;
    color: rgba(0,0,0,.4);
  }

  .form-actions{
    margin: 0;
  }

  #edit-submit{
    color: var(--anchor-color);
    background: #3750a9;
    border: 2px solid #3750a9;
    border-radius: 25px;
    margin: 1em .5em 0;
    padding: .5em .75em;
    transition: all .25s ease-in-out;
    min-width: 150px;
  }
  #edit-submit:focus,
  #edit-submit:hover{
    color: var(--anchor-hover);
    background: #3750a9;
    border: 2px solid #3750a9;
    transition: all .1s ease-in-out;
  }
}

.tabs a.is-active, .tabs a:hover {
  background-color: transparent;
  color: #e3e3e4;
}
