/* CSS Document */
@charset "UTF-8";

@font-face {
    font-family: 'Vazir';
    src: url('../css/fonts/Vazir.eot');
    src: local('../css/fonts/Vazir'), url('../css/fonts/Vazir.woff') format('woff'), url('../css/fonts/Vazir.ttf') format('truetype');
}

body {
    font-family: 'Vazir';
    background: -webkit-linear-gradient(right, #4279a7, #e3f0fa);
}

input[type=submit] {
    outline: none;
}

input[type=submit]:hover {
    opacity: .9;
}

input[type=email], input[type=password] {
    text-align: right;
}

.register {
    margin-top: 3%;
    padding: 3%;
}

.register-right {
    text-align: center;
    color: #fff;
    margin-top: 4%;
}

.register-right input {
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    width: 80%;
    background: #f8f9fa;
    font-weight: bold;
    color: #383d41;
    margin-top: 30%;
    margin-bottom: 3%;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .register-right input {
        margin-top: 0;
    }
}

.register-left {
    background: #f8f9fa;
    border-top-right-radius: 10% 50%;
    border-bottom-right-radius: 10% 50%;
}

@media screen and (max-width: 767px) {
    .register-left {
        border-radius: 10px;
    }
}

.register-right img {
    margin-top: 15%;
    margin-bottom: 5%;
    width: 50%;
    /*-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-right p {
    font-weight: lighter;
    padding: 6%;
    margin-top: 5%;
}

.register .register-form {
    width: 100%;
    padding: 10%;
    margin-top: 10%;
}

.btnRegister {
    float: left;
    margin-top: 10%;
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    background: #0062cc;
    color: #fff;
    font-weight: 600;
    width: 50%;
    cursor: pointer;
}

.register .nav-tabs {
    margin-top: 3%;
    border: none;
    background: #0062cc;
    border-radius: 1.5rem;
    width: 28%;
    float: left;
}

.register .nav-tabs .nav-link {
    padding: 2%;
    height: 34px;
    font-weight: 600;
    color: #fff;
    border-top-left-radius: 1.5rem;
    border-bottom-left-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-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

.register-heading {
    text-align: center;
    margin-top: 8%;
    margin-bottom: -15%;
    color: #495057;
}