/* universal typography start */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
li{
    list-style-type: none;
}
/* universal typography end   */


body {
    background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
    height:100vh;
}

/* login box design */

.login_box {
    background-color: #fff;
    height: 370px;
    width: 442px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* login box content design  */

.login_box_content_wrapper {
    width: 85%;
    margin: 10%;
}

.sign_in_text {
    color: #1b1b1b;
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* login inputbox design */

.login_inputbox .the_input{
    width: 90%;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.6);
    padding: 10px 0px;
    outline: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
}
.login_inputbox .the_input:focus-within{
    border-bottom: 1px solid #005DA6;
}

/* login middle links design  */

.login_middle_links{
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #373737;
}
.login_middle_links .login_middle a{
    color: #005DA6;

}
.login_middle_links p{
    margin-bottom: 20px;
}
.login_middle_links .login_middle a:hover{
    text-decoration: underline;
    color: #666;
}
.login_middle_links p:nth-child(2) a,.login_middle_links p:nth-child(3) a{
    color: #005DA6;
}
.login_middle_links p:nth-child(2) a:hover{
    text-decoration: underline;
    color: #666;
}
.login_middle_links p:nth-child(3) a:hover{
    text-decoration: underline;
    color: #666;
}
/* login next button design */
.login_next_button{
    width: 90%;
    text-align: right;
    margin-top: -42px;
}
.login_next_button .button{
	background-color: #005DA6;
    border: none;
    padding: 8px 35px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}
.login_next_button .button:hover{
    background-color:#0e4e80;
}
.button{
	cursor: pointer;
}
/* footer section design */

.footer_contents{
    position: absolute;
    bottom:0;
    right: 0;
    margin-bottom: 10px;

}
.footer_contents ul{
    width: 300px;
}
.footer_contents ul li{
    display: inline;
    float: left;
}
.footer_contents ul li a{
    padding: 0px 15px;
    color: black;
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 13px;
}
.footer_contents ul li a:hover{
    text-decoration: underline;
}

.footer_contents button{
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    font-weight: bolder;
}
.newcls{
	width: 90%;
    border: 1px solid #d2c3c3;
    padding: 10px 2px;
    outline: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
    opacity: 0.9;
    border-radius: 4px;
}
.login_box2{
	height:600px;
}