* {
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
    
}
  
body {
    width: 100%;
    height: 100vh;

    
}

input::-ms-reveal, input::-ms-clear {
    display: none;
}

.header{
    position: absolute;
    top: 0px;
    width: 100%;
}
.container{
    padding-top: 20px;
    overflow: visible;
}

.content{
    padding-bottom: 10px;
}

.left{
    display: flex;
    align-items: center;
    justify-content: center;
  }
.left .left-logo img{
    max-width: 160px;
    margin: auto;
    display: block;
}
.left .left-logo h3{
    margin: auto;
    display: block;
    text-align: center;
}
.right-logo{
    text-align: center;
}
.right-logo img{
    width: 250px;
    margin: auto;
    display: block;
}
.reg-form h3{
    text-align: center;
}
.reg-form .create-btn:hover{
    background-color: white;
    color: #000;
}
.reg-form .pass{
    display: inline-block;
}
.reg-form i{
    display: inline;

}
.reg-form .back-btn{
    text-decoration: none;
}

.right-bottom-btn{
    width: 80%;
    margin: auto;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    display: flex;
    justify-content: center;
    
}
.right-bottom-btn .login-btn{
    color: blue;
    text-decoration: underline;
}
.right-bottom-btn .reset-btn{
    color: blue;
    text-decoration: underline;
}

.footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 13px;
    min-height: 50px;
    background:#c8dbeb;
    color: black;
}
.footer p{
    margin: 0;
}
/*Change Password Page Start*/

.reg-form h4{
    text-align: center;

}


/*Change Password Page End*/

/*Confirmation Page Start*/

.cpage .welcome-msg{
    display: flex;
    justify-content: center;
}
.cpage .cpage-content{
    margin-bottom: 30px;
}
.cpage .cpage-content p{
    text-align: center;
}
.cpage .cpage-content h5{
    text-align: center;
    font-weight: bold;
}
.cpage .cpage-content table{
    font-size: small;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    max-width: 500px;
    margin: 0px auto;
}
/*Confirmation Page End*/



@media only screen and (max-width: 991px) {
    body{
        height: 100%;
    }
    .footer{
        position: relative;
        bottom: 0;
        width: 100%;
    }
    .reg-form{
        width: 80%;
        margin: auto;
    }
}
@media only screen and (max-width: 767px) {
    .left .left-logo img{
        width: 150px;
        margin-top: 20px;
    }
    .footer{
        position: relative;
        bottom: 0;
        width: 100%;
    }
    .reg-form{
        width: 100%;
        margin: auto;
    }
    .cpage .welcome-msg h4{
        font-size: 25px;
        text-align: center;

    }

}
@media only screen and (max-width: 575px) {
  
    .left .left-logo img{
        width: 120px;
    }
    .right .right-logo img{
        width: 200px;
    }
    .reg-form{
        margin-top: 20px;

    }
    .footer{
        position: relative;
        bottom: 0;
        width: 100%;
    }
    .cpage .welcome-msg h4{
        font-size: 20px;
        text-align: center;

    }
   
}
@media only screen and (min-width: 992px) {
    .reg-form{
        width: 80%;
        margin: auto;
    }
}
