 .login-page {
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f9;
    margin-top: 100px;
}
.login-box {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.card {
    box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
}
.input-group-text {
     background-color: transparent;
}
.login-title {
    font-family: BIZ UDPGothic;
    font-weight: 700;
    font-style: normal; 
    font-size: 18px;
    line-height: 1.56em;
    letter-spacing: 0.02em;
     margin-bottom: 14px;
}
.login-group {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DEE6E8;
}
.login-group label {
    width: 160px;
    font-family: BIZ UDPGothic;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: 0.02em;
    color: #A9B0B3;
}
.login-group label span {
    color: #EA5A3D;
 }

.login-group input {
    width: 620px;
    padding: 10px 12px;
    font-family: BIZ UDPGothic;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: 0.02em;
    color: #A9B0B3;
    border: 1px solid #A9B0B3;
    border-radius: 4px;
}
.login-group .pw {
    position: relative;
    width: 620px;
}
.login-group .pw .pw-eye {
	position: absolute;
	top: 10px;
	right: 14px;
	width: 24px;
	cursor: pointer;
}
.login-page a {
    display: block; 
    margin: 0 auto; 
    width: fit-content;
    font-family: BIZ UDPGothic;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: 0.02em;
    color: #3DB3EA;
    text-decoration: none;
    text-align: center;
    margin-bottom: 14px;
    margin-top: 14px;
}
.login-page button {
    width: 120px;
    margin: 0 auto;
    padding: 6px 0;
    border: 0;
    border-radius: 4px;
    font-family: BIZ UDPGothic;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: 0.02em;
    text-align: center;
    color: #FFFFFF;
    background-color: #3DB3EA;
}
.login-page p {
    font-family: BIZ UDPGothic;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: 0.02em;
    text-align: center;
    color: #3A4040;
}   

/*Error design*/
.error .login-group input {
    border: 1px solid #EA5A3D !important;
    border-radius: 4px;
}
.error .login-group input::placeholder {
    color: red;
}