﻿:root {
    --primary-color:#003399;
    --secondry-color:#019934;

    --success-color:#198754;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/

/* login-register page css*/

.login-main {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    /*background: url('../assets/images/login-bg.jpg') no-repeat fixed top right;
    background-size: auto auto;*/
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    align-items: top;
    justify-content: flex-end;
    overflow: auto;
}

.login-box {
    position: relative;
    z-index: 2;
    width: 600px;
    margin-right: 10%;
    float: right;
    margin-top:50px;
}

.login-box-inr {
    background: #fff;
    width: 100%;
    float: left;
    text-align: center;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    padding:0 20px;
}

.form, .form-group, .inpt {
    width: 100%;
    float: left;
    position: relative;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    float: left;
}

    .form-group label {
        position: absolute;
        top: -10px;
        left: 5px;
        font-size: 12px;
        padding: 2px 7px;
        background: #fff;
        z-index: 2;
        color: #424951;
        font-weight:normal;
        font-family:"montserrat";
    }

input, select, textarea {
    font-family: "montserrat-light";
    font-size: 13px;
    outline: none;
    float: left;
    width: 100%;
    padding-left: 5px;
    border: #ccc solid thin;
    border-radius: 3px;
}

    input[type="text"], select {
        height: 35px;
        line-height: 32px;
    }

.inpt input, .inpt select {
    width: 100%;
    float: left;
}

.inpt input {
    padding: 5px 10px;
    line-height: 30px;
    height: auto;
}

.logo {
    width: 160px;
    float: left;
    padding: 7px 0;
}

.login-box .logo {
    float: left;
    display: block;
    margin: 15px 0 0;
    text-align: center;
    width: 100%;
}

.tab-design {
    width: 100%;
    float: left;
    border: none !important;
    margin:10px 0; 
}

.tab-content {
    width: 100%;
    float: left;
    border: none;
}


.nav-tabs {
    width: 100%;
    float: left;
    text-align: center;
    margin: 15px 0;
    border: none;
}


    .nav-tabs li {
        display: inline-block;
        float: none;
    }

    .nav-tabs > li > a {
        display: block;
        padding: 5px 15px;
        border: #ccc solid thin !important;
        color: #666 !important;
        border-radius: 30px !important;
        cursor: pointer;
        transition: all 0.4s ease;
        text-transform: uppercase;
        font-family: "montserrat-light";
        outline: none;
    }

        .nav-tabs > li > a:hover {
            color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
            background: none !important;
        }

    .nav-tabs > li.active > a {
        background: var(--secondry-color) !important;
        color: #fff !important;
        border-color: var(--secondry-color) !important;
        font-family: "montserrat-med";
    }

.btn {
    width: auto;
    padding: 5px 15px;
    background: none;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    font-family: "montserrat";
    border-radius: 30px;
    display: inline-block;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: var(--primary-color) solid thin;
}

    .btn-primary:hover {
        background: var(--secondry-color);
        border: var(--secondry-color) solid thin;
    }

.btn-primary-outline {
    border:var(--primary-color) solid thin;
    color:var(--primary-color);
}
    .btn-primary-outline:hover {
        background:var(--primary-color);
        color:#fff;
    }

.btn-small {
    padding:4px 10px !important;
    line-height:normal !important;
    font-size:12px;
    margin-top:5px;
}


.login-box-inr .btn {
    width: 100%;
}

.form-group input[type="text"], .form-group input[type="password"], .form-group input[type="email"], .form-group input[type="tel"], .form-group select {
    width: 100%;
    float: left;
}

select {
    height: 42px;
}

.form-control {
    height:42px;
}

.form-group .validation {
    text-align:left;
    color:#db1616;
    display:block;
}

.university-dtl {
    position:absolute;
    top:100px;
    left:50px;
    text-align:center;
    width:40%;
}

    .university-dtl img {
        max-width:90%;
    }

.university-dtl h3 {
    font-family:"Poppins";
    font-weight:800;
    font-size:40px;
    text-transform:uppercase;
    margin-top:30px;
    color:var(--primary-color);
}
    .university-dtl h3 span {
        display:block;
        font-weight:700;
        color:var(--secondry-color);
    }


@media only screen and (max-width:1366px) {
    .login-box {
        margin-right:3%;
    }
}
@media only screen and (max-width:1280px) {
    .login-main {
        background-position: top left;
    }
    .login-box {
        width:45%;
    }
}
@media only screen and (max-width:1100px) {
    .login-box {
        width: 40%;
    }
    .university-dtl h3 {
        font-size:35px;
    }
}

@media only screen and (max-width:991px) {
    body {
        background: url('../assets/images/login-bg.jpg') no-repeat fixed top right;
        background-size:cover;
    }
    .login-main {
        background: none;
        padding:20px 0 ;
        position:relative;
        height:auto;
    }

    .login-box {
        width:600px;
        max-width:95%;
        float:none;
        margin:0 auto ;
    }

    .university-dtl {
        position:relative;
        width:100%;
        top:0;
        left:0;
    }
    .login-box-inr .logo{
        display:none;
    }

    body {
        padding-top:20px;
    }

    .university-dtl img {
        width:300px;
    }
    .university-dtl h3 {
        margin:25px 0;
        font-size:25px;
    }
}

@media only screen and (max-width:600px) {
    .login-main {
        padding:10px 0;
    }
}


/*loading animation start*/

.cust-loading, .alert-popup {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div.circle {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: var(--secondry-color);
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div.circle:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
/*loading animation end*/


.hide-show-number {
    position: relative;
}

.inpt-text-hide-show {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    color:#666;
}

.login-box-inr .logo img {
        width:200px;
}

.btn-secondary-outline {
  color: #424951;
  border: #424951 solid thin;
  border-radius: 30px;
  font-size: 14px;
  margin: 0 5px;
  margin-bottom: 7px;
}

.btn-secondary-outline:hover {
  background: #424951;
  color: #fff;
}

.login-box .btn-secondary-outline {
  padding: 0 5px;
  margin: 4px 0;
  width: auto;
  font-size: 11px;
  height: auto;
}

    .login-box .btn-secondary-outline:not(:last-child) {
        margin-right:5px;
    }