/*********************************
	header
*********************************/
.header {
    height: 50px;
}

.header_container {
    margin: 0 16px;
    height: 100%;
}

.header_title {
    font-weight: 600;
    font-size: 18px;
    line-height: 50px;
}

/*********************************
	main
*********************************/
.main {
    height: calc(100vh - 50px);
}

.container {
    max-width: 360px;
    width: 90%;
    margin: 0 auto;
    padding-top: 144px;
}

.login_title {
    text-align: center;
    font-weight: 600;
    font-size: 22px;
}

.login_sub_title {
    font-size: 16px;
    font-weight: 500;
}

/*********************************
	login form
*********************************/
.card {
    background: #fff;
    padding: 16px;
    border: 1px solid #C3C4C7;
    margin-top: 16px;
}

label {
    display: block;
    font-size: 14px;
}

input {
    display: block;
    width: 100%;
    height: 32px;
    margin-top: 4px;
}

.input:not(:first-child) {
    margin-top: 16px;
}

.button {
    margin-top: 32px;
}