*{
    box-sizing: border-box;
}
body
{
    background-color: #fff;

    /*background-image: linear-gradient(to right, rgba(48,137,150,1), rgba(16,125,172,0.8) );*/

    /*background-image: linear-gradient(to right, #F2A100 rgb(242,161,0) , #ff9800) rgb(255,152,0);*/
    margin-top: 115px !important;

}

.form-container{
    background-color: #fff;
    position: relative;
    padding: 30px 10px;
    box-shadow: 0 1px 1.5rem rgba(0,0,0,.3);
    border-radius: 1rem;
    z-index: 1;

}

.form-container::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #ff9800, #F2A100);

    z-index: -1;

}

.form-container h2{
    color: #fff;
    text-align: center;

}

.register-form{

    padding: 2rem 0;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 1px 1.5rem rgba(0,0,0,0.1);

}


.register-right{
    border: none;
    background: #f8f8f8;
    padding: 30px 15px;

}

.register-left img{
    margin-top: 60px;
    margin-bottom: 20px;
    width: 80px;
    animation: mover 1s infinite alternate;
    color: #fff;

}

.register-right h2, .register-right p  {
    text-align: center;

}


.register-form{
    padding:  15px 15px 50px 15px;

}

.register-form .btn-primary{
    float: right;
    border-radius: 1.5rem;
    border: none;
    width: 120px;
    background: #F2A100;
    font-weight: 600;
    color: #fff;

    padding: 10px;
}

.register-form .btn-primary:hover{
    background: #ff9800;

}

.contact{
    margin-top: 50px;
    color: #000;
}

/*input[type=text]:active,*/
/*input[type=email]:focus,*/
/*input[type=textarea]:focus,*/
/*input[type=select]:focus*/
/*{*/
/*    border: 1px solid #000;*/
/*    text-decoration: none;*/
/*}*/
/*input[type=text]:hover {*/
/*    border: 1px solid #000;*/
/*}*/

@keyframes mover {
    0%{transform: translateX(0);}
    100%{transform: translateX(20px); }
}

/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="col-"] {
        width: 100%;
    }
    .hidden-sm {
        display: none !important;
        visibility: hidden !important;
    }
}