/* Global Styles ####################################################################################### */

body {
    background-color: #fafafa;
}

#particles {
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -2;
}

.checkbox label {
    cursor: pointer;
}

.btn-primary {
    background-color: #1473e6 !important;
}
.alert.custom_alert{
    margin: 30px;
    border-left: 3px solid;
    border-radius: 0px;
}
.dropdown-toggle {
    cursor: pointer;
}


/* End of Global Styles ####################################################################################### */

/* Login Page ######################################################################################### */

.login_area {
    margin-top: 10%;
}

.login_card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px 40px 40px 40px;
}

@media screen and (max-width: 480px) {
    .login_card {
        padding: 10px 20px 20px 20px;
    }
}

.login-title {
    margin: 30px 0px 35px 0px;
    /* border-bottom: 1px solid #e4e5e7; */
}

.login-title span {
    background-color: #fff;
    padding: 0px 8px;
    font-weight: 400 !important;
    font-size: 18px !important;
}

.login-title .hr_div {
    display: block;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e4e5e7;
    margin-top: -12px;
}

/* End Of Login Page ######################################################################################### */

/* Register Page ######################################################################################### */

.register {
    padding: 5%;
}

.register-left {
    text-align: left;
    color: #495057;
    margin-top: 4%;
}

.register-left .back_to_login {
    color: #383d41;
    margin-top: 20%;
    margin-bottom: 10%;
}

.register-right {
    /* background: #f8f9fa; */
    border-top-left-radius: 10% 50%;
    border-bottom-left-radius: 10% 50%;
    background: #ffff;
    border: 1px solid #ddd;
}

.register-left img {
    margin-top: 15%;
}

@-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;
}

/* Navs */

.togle_navs {
    position: absolute;
    top: 3%;
    right: 3%;
}

.togle_navs .nav_items {
    background: #1473e6;
    border-radius: 1.5rem;
    padding: 4px;
}

.togle_navs .togle_nav {
    padding: 3px 15px;
    border-radius: 1.5rem;
    color: #fff;
}

.togle_navs .togle_nav.active {
    background: #fff;
    color: #495057;
}

.register-heading {
    text-align: center;
    margin-top: 8%;
    margin-bottom: -15%;
    color: #495057;
}

.register .register-form {
    padding: 10%;
    margin-top: 10%;
}

.btnRegister {
    float: right;
    margin-top: 10%;
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    background: #1473e6;
    color: #fff;
    font-weight: 600;
    width: 50%;
    cursor: pointer;
}

.accpect_tc_pp {
    margin-top: 10%;
}

@media screen and (max-width: 768px) {
    .register .togle_navs {
        display: none;
    }
    .register-right {
        border-radius: 5px !important;
        margin: 3%;
    }
    .register .register-form {
        padding: 3%;
    }
}

/* End Of Register Page ######################################################################################### */

/* Forget Password Page ######################################################################################### */

.pass_show {
    position: relative
}

.pass_show .ptxt {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 1;
    color: #007bff;
    margin-top: -10px;
    cursor: pointer;
    transition: .3s ease all;
}

.pass_show .ptxt:hover {
    color: #333333;
}

/* End Of Forget Passowrd Password Page ########################################################################## */



/* Sueccess Modal @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.modal-confirm {		
    color: #636363;
    width: 325px;
    font-size: 14px;
}
.modal-confirm .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}
.modal-confirm .modal-header {
    border-bottom: none;   
    position: relative;
}
.modal-confirm h4 {
    text-align: center;
    font-size: 26px;
    margin: 30px 0 -15px;
}
.modal-confirm .form-control, .modal-confirm .btn {
    min-height: 40px;
    border-radius: 3px; 
}
.modal-confirm .close {
    position: absolute;
    top: -5px;
    right: -5px;
}	
.modal-confirm .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}	
.modal-confirm .icon-box {
    color: #fff;		
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    background: #1cc88a;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-confirm .icon-box i {
    font-size: 58px;
    position: relative;
    top: 3px;
}
.modal-confirm.modal-dialog {
    margin-top: 80px;
}
.modal-confirm .btn {
    color: #fff;
    border-radius: 4px;
    background: #1cc88a;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none;
}
.modal-confirm .btn:hover, .modal-confirm .btn:focus {
    background: #1cc88a;
    outline: none;
}
.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}
/* Sueccess Modal @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */