html,
body {
    height: 100%;
    font-family: 'Pretendard 400', sans-serif;
    font-size: 16px;
}

.container {
    width: 510px;
    height: 100%;
    margin: 0 auto;
}

.content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content .title {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .title h2 {
    font-size: 36px;
    color: #194F6B;
    text-align: center;
    font-family: 'Pretendard 700', sans-serif;
}

.content .title h2:first-child {
    margin-bottom: 40px;
    display: inline-block;
    font-family: 'Pretendard 400', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 0.85;
    text-align: left;
}

.content .title h2:first-child > span {
    margin-right: 2px;
    display: inline-block;
    width: 40px;
    font-family: 'Pretendard 700', sans-serif;
    font-size: 44px;
    text-align: center;
}

.content .Login_container {
    margin-top: 50px;
}

.Login_container .flexBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.Login_container form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Login_container form .inputBox {
    margin-right: 15px;
    width: calc(100% - 135px);
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Login_container form .label {
    display: inline-block;
    width: 75px;
}

.Login_container form input {
    padding: 15px;
    width: calc(100% - 75px);
    background-color: #F5F5F5;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    font-size: 15px;
}

.Login_container form button {
    width: 120px;
    height: 110px;
    padding: 14px;
    background-color: #194F6B;
    border: 0;
    border-radius: 4px;
    font-size: 18px;
    font-family: 'Pretendard 700', sans-serif;
    color: white;
    cursor: pointer;
}

.Login_container form button:hover {
    background-color: #0D3F59;
}

.Login_container .forget_container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.Login_container .forget_container button {
    padding: 0;
    border: 0;
    background-color: transparent;
    font-size: 14px;
    color: #194F6B;
    line-height: 1;
    cursor: pointer;
}

.Login_container .forget_container button:first-child {
    margin-right: 10px;
    position: relative;
}

.Login_container .forget_container button:first-child:after {
    content: "";
    display: block;
    width: 1px;
    position: absolute;
    top: 0;
    right: -10px;
    bottom: 0;
    background-color: #0D3F59;
}

.Login_container .forget_container button:last-child {
    margin-left: 10px;
}

.Login_container .input_container_modal .flexBox {
    margin-bottom: 10px;
}

.Login_container .input_container_modal .label {
    width: 90px;
    text-align: left
}

.Login_container .input_container_modal input {
    width: calc(100% - 90px);
    margin-bottom: 0;
    font-size: 15px;
}

.content footer {
    margin: auto 0 30px;
    text-align: center;
}

.content footer p {
    font-size: 12px;
    color: #666666;
}