html,body{
    margin :0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    background: whitesmoke;
}

#main_wrap {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: rgb(23, 132, 168);
}

h3 {
    color: rgb(231, 240, 231);
    padding: 5px;
    font-size: 12px;
    font-weight: 100;
    text-align: right;
}

#top_wrap {
    height: 50px;
    width: 100%;
    padding: 5px;
    background: rgb(221, 229, 231);

}


#center_wrap {
    height: 75%;
    width: 100%;
    /* padding: 5px; */
    display: flex;
    align-items: center; /*display and align-items are used to v.center this div*/
    justify-content: center;
    background: rgb(93, 172, 182);

}

#login_div {
    display: inline-block;
    height: 500px;
    width: 30vw;
    padding : 10px;
    background: rgb(224, 224, 210);
    box-shadow: 10px 10px 10px black;
    border-radius: 10px;
}

#login_form {
    height: 500px;
    width: 100%;

}


#login_header {
    height: 20%;
    display: flex;
    align-items: center; /*display and align-items are used to v.center this div*/
    justify-content: left;
}



#login_header .h1_power {
    float: right;
    font-weight: 500;
    font-family: Noto Sans;
    font-size: 30px;
}

#login_header .div_line {
    float: right;
    overflow: hidden;
    width: 70%;
    flex: 1 0 0;
    margin-left: 5px;
    height: 10px;
    border-top: 1px solid black;
}

.login_credentials {
	display : flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
    width: 100%;
}

#login_input {
	display : flex;
	flex-direction: column;
	padding: 10px;
}

.cls_enter {
    display: flex;
    align-items: center; 
    justify-content: center;
    width: 100%;
    border-radius: 10px;
}

.input_field {
    width: 100%;
	height : 30px;
    border-radius: 10px;
    border: 1px solid white;
}

.input_field:hover{
    border:2px solid white;
    box-shadow: 0 0 10px #9ecaed;
}

.cls_id {
    display: flex;
    align-items: center; 
    justify-content: left;
    width: 100%;
	height : 50px;
    border-radius: 10px;
}


#login_button {
    display: flex;
    align-items: center; 
    justify-content: center;
    margin-top: 10px;
}

button {
    background: rgb(38, 184, 221);
    border: 2px solid rgb(11, 163, 209);
    width: 95%;
    border-radius: 10px;
    font-size: 20px;
}

button:hover {
    background: white;
    border:2px solid white;
    box-shadow: 0 0 10px #9ecaed;
    font-size: 25px;
}

.my_button {
	height : 60px;
}



#check_box {
    height: 10%;
    margin: 5px 15px 5px 1px;
    width: 100%;
    background: rgb(221, 229, 231);
}

#div_info {
    height: 10%;
    margin: 5px 15px 5px 1px;
    width: 100%;
    background: rgb(221, 229, 231);
    vertical-align: bottom;
}
  

#bottom_wrap {
    height: 50px;
    width: 100%;
    padding: 5px;
    background: rgb(221, 229, 231);
    vertical-align: bottom;

}

.div_chk{
    padding-left:0.5em ;
}

@media screen and (max-width: 1126px) {

    #login_div {
        width: 90vw;
    }

}
