
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    /* adds animation for all transitions */
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    outline: none;
  }
  
  @font-face {
    font-family: 'Pacifico';
    font-style: normal;
    src: local('Montserrat'), local('Pacifico-Regular'), url(https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600,700) format('woff2');
    font-display: swap;
  }
  
  html,body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
  }

  body {
    font-family: 'TT NB', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: grey;
    z-index: 1;
  }

header{
    display: flex;
    align-items: center;
    width: 100%;
    height: 8rem;
    position: relative;
    background: #023460;
}

.logo-container{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
}

.logo{
    position: relative;
    width: 8rem;
    height: 6rem;
    margin: 1rem 0;
}

 #Layer_2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

header h1{
    margin: 0 2rem;
}

.reg-form{
    margin: 1rem 0;
}

@media only screen and (max-width: 823px) {
    header h1{
        font-size: 1.5rem;
        margin: 0 .5rem;
    }

    .logo{
        width:3.5rem;
        height: 3.5rem;
    }
}

.check{
    width:3.5rem;
    height: 3.5rem;
}

.load{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 5;
    color: #023460;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    animation: fade .5s;
}

.no-load{
    display: none;
}

.spinner {
    margin: 10px auto 0;
    width: 70px;
    text-align: center;
  }
  
  .spinner > div {
    width: 18px;
    height: 18px;
    background-color: #023460;
  
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }

  @keyframes fade {
      0%{ opacity: 0;}
      100% {opacity: 1;}
  }

  footer{
      background: #023460;
  }

  .padding{
      padding: 1rem;
  }

  .heading{
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .help{
      display: flex;
      flex-direction: column;
      padding: .5rem 1rem;
      font-weight: 600;
      font-size: 1.5rem;
      background: #023460;
      justify-content: center;
      align-items: center;
      color: white !important;
  }

  .help > p {
    margin: 0;
    padding: 0;
  }