@charset "utf-8";

#login{
	width: 100%;
    height: 100vh;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.login_contents, 
.login_images{
	width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login_contents{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 568px;
    margin: 15% auto;
    width: 100%;
}
.login_contents h2{
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    color: #0e2143;
    text-transform: uppercase;
    letter-spacing: .15em;
}
.login_contents p{
    text-align: center;
    font-size: 16px;
    margin: 30px 0 60px;
    letter-spacing: .1em;
    color: #0e2143;
}
.login_contents form{
	width: 80%;
	max-width: 500px;
}
.login_contents dl {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 15px;
    letter-spacing: .25em;
}
.login_contents dt {
    font-size: 14px;
    width: 130px;
    transition: .5s;
    text-transform: uppercase;
}
.login_contents dd {
    width: calc(100% - 130px);
    border-bottom: #E9E9F0 solid 2px;
    position: relative;
}
.login_contents dd input {
    width: 100%;
    height: 35px;
    border: none;
    font-size: 18px;
    background: #E9E9F0;
    color: #0e2143;
    letter-spacing: .2em;
    padding: 5px 10px;
    box-sizing: border-box;
}
.login_contents form ul#forgot {
    text-align: right;
    margin-bottom: 20px;
}
.login_contents form p {
    margin: 40px auto 0;
    width: 100%;
    max-width: 200px;
}
.login_contents form p input {
    width: 100%;
    font-size: 14px;
    background: #0e2143;
    color: #fff;
    border: #0e2143 solid 2px;
    border-radius: 3px;
    padding: 10px 0;
    transition: .5s;
    cursor: pointer;

}
.login_contents form p input:hover{
	background: #fff;
	border: #0e2143 solid 1px;
	color: #0e2143;
	font-size: 15px;
}
.login_contents form label {
    cursor: pointer;
}
.login_contents form li input {
    vertical-align: text-bottom;
    margin-right: 8px;
}
.field-icon{
    color: #555;
    float: right;
    margin-right: 15px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
}
.field-icon i{
	width: 20px;
	height: 20px;
}
.mdi-set, .mdi:before {
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mdi-eye:before {
    content: "\F0208";
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

#passcheck{
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 7px;
    color: #333;
    font-size: 12px;
    cursor: pointer;
    background: #E9E9F0;
    border: none;
}


