.register{
    background: -webkit-linear-gradient(top, #000000, #5740DD);
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
}
.register-left{
    text-align: center;
    
    color: #fff;
    margin-top: 4%;

}
.register-left input{
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    width: 60%;
    background: #f8f9fa;
    font-weight: bold;
    color: #383d41;
    margin-bottom: 3%;
    cursor: pointer;
}
.register-right{
    background: #f8f9fa;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    border-top-left-radius: 10% 0%;
    border-bottom-left-radius: 10% 0%;
}
.register-left img{
    margin-top: 30vh;
    margin-bottom: 5%;
    width: 25%;
    -webkit-animation: mover 2s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}


.register-left p{
    font-weight: lighter;
    padding: 12%;
    margin-top: -9%;
}
.register .register-form{
    padding: 10%;
    margin-top: 10%;
    
}


.btn-get-started {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 10px 28px;
    transition: 0.5s;
    margin-bottom: 20px;
    margin-right: 20px;
    background: #5740DD;
    border: 2px solid #5740dd;
    color: #fff;
}






.btn-primary {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 10px 28px;
    transition: 0.5s;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #5740DD;
    border: 2px solid #5740dd;
    color: #fff;
  }
  
  .btn-primary:hover {
    color: #fff;
    background: #5740DD;
    border: 2px solid #5740dd;
  }

#home-btn-bar{
    justify-content: end;
}

@media (max-width: 1025px) {
    #home #homebtn {
        margin-right: 20px;
        font-size: 14px;
    }
    
    #formbtn{
        margin-top: 20px;
    }
}


.register .nav-tabs{
    margin-top: 3%;
    border: none;
    background: #0062cc;
    border-radius: 1.5rem;
    width: 28%;
    float: right;
}
.register .nav-tabs .nav-link{
    padding: 2%;
    height: 34px;
    font-weight: 600;
    color: #fff;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}
.register .nav-tabs .nav-link:hover{
    border: none;
}
.register .nav-tabs .nav-link.active{
    width: 100px;
    color: #0062cc;
    border: 2px solid #0062cc;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}
.register-heading{
    text-align: center;
    font-size: 40px;
    margin-top: 8%;
    margin-bottom: -15%;
    color: #5740DD;
}