*, *:before, *:after {
    box-sizing: border-box;
  }
  
  html {
    overflow-y: scroll;
  }


  
body {
    background-image: linear-gradient( 110deg, #C1ECFA 20%,#719CAA 100%);
    text-align: center;
    background-attachment: fixed;
    font-family: 'Rubik', sans-serif;
  }

  
  .form {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
  }
  
  .tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
  }
  .tabs:after {
    content: "";
    display: table;
    clear: both;
  }
  .tabs li a {
    display: block;
    text-decoration: none;
    padding: 15px;
    background: rgba(160, 179, 176, 0.25);
    color: #a0b3b0;
    font-size: 20px;
    float: left;
    width: 50%;
    text-align: center;
    cursor: pointer;
    transition: .5s ease;
  }
  .tabs li a:hover {
    background: #8FBAC8;
    color: #ffffff;
  }
  .tabs .active a {
    background: #719CAA;
    color: #ffffff;
  }
  
  .tab-content > div:last-child {
    display: none;
  }
  
  label {
    position: absolute;
    transform: translateY(6px);
    left: 13px;
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.25s ease;
    pointer-events: none;
    font-size: 22px;
  }
  label .req {
    margin: 2px;
    color: rgb(179, 60, 60);
  }
  
  label.active {
    transform: translateY(50px);
    left: 2px;
    font-size: 14px;
  }
  label.active .req {
    opacity: 0;
  }
  
  label.highlight {
    color: #000000;
  }
  
  input, textarea {
    font-size: 22px;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    background: none;
    background-image: none;
    border: 1px solid #000000;
    color: #000000;
    border-radius: 0;
    transition: border-color .25s ease, box-shadow .25s ease;
  }
  input:focus, textarea:focus {
    outline: 0;
    border-color: #719CAA;
  }
  
 
  .user-info {
    position: relative;
    margin-bottom: 40px;
  }
  
  .user-name:after {
    content: "";
    display: table;
    clear: both;
  }
  .user-name > div {
    float: left;
    width: 48%;
    margin-right: 4%;
  }
  .user-name > div:last-child {
    margin: 0;
  }
  

  .button {
    border: 3px solid white;
    border-radius: 3px;
    color: white;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    background-image: -moz-linear-gradient(110deg, #C1ECFA 20%,#719CAA 100%);
    background-image: -webkit-linear-gradient( 110deg, #C1ECFA 20%,#719CAA 100%);
    background-image: -ms-linear-gradient(110deg, #C1ECFA 20%,#719CAA 100%);
    background-image: linear-gradient( 110deg, #C1ECFA 20%,#719CAA 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    display: inline-block;
    padding: 0.6rem 2rem;
    margin: 30px 2px;
    cursor: pointer;
  }

  .button:hover, .button:focus {
    background: #719CAA;
  }
  
  .button-block {
    display: block;
    width: 100%;
  }
  
  .forgot {
    margin-top: -20px;
    text-align: right;
  }

  
a {
    color:#8FBAC8;
}

a:hover,a:focus {
    color:#8FBAC8;
}

h1 {
    font-size: 45px;
    font-weight: 300;
    color: white;
    text-align: center;


}

h2, h3 {
    color: black;
    font-size: 30px;
    font-weight: 500;
    text-align: center;

}



.nav-menu{
    background-color: #C1ECFA ;
    background: -moz-linear-gradient( 110deg, #C1ECFA 20%,#719CAA 100%);
    background: -webkit-linear-gradient( 110deg, #C1ECFA 20%,#719CAA 100%);
    background: linear-gradient( 110deg, #C1ECFA 20%,#719CAA 100%);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 14px;
}
.navbar-nav>.nav-item>.nav-link.active:after {
    content: "";
    border-bottom: 3px solid #53727c;
    left: 1rem;
    right: 1rem;
    bottom: 5px;
    height: 1px;
    position: absolute;
}

.navbar-nav .nav-item {
        text-align: center;
}
.custom-logo{
  font-weight: bold;
  color:white;
  font-size: 1.2em;
}