/*-------------------------
  スタイルリセット、デフォルト値設定
-------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #444;
    background: #eee;
}

.header {
    height: 64px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 20%);
}

.header-container {
    height: 100%;
    margin: 0 1%;
    display: flex;
    align-items: center;
}

.header-logo_image {
    height: 50px;
    display: block;
}

.login-container {
    margin: 0 auto;
    width: 320px;
    margin-top: 96px;
}

.logo-image {
    width: 50%;
    display: block;
    margin: 0 auto;
}

.login-title-admin {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.logo-image-admin {
    width: 50%;
    display: block;
}

.login-title-text {
    font-size: 16px;
}

.login-form {
    width: 100%;
    margin-top: 16px;
}

.login-input-container {
    width: 100%;
}

.login-input {
    display: block;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #088dcd;
    padding: 8px;
}

.login-input:not(:last-child) {
    margin-bottom: 16px;
}

.login-submit {
    display: block;
    width: 100%;
    color: #fff;
    background: #088dcd;
    padding: 8px;
    margin-top: 16px;
    border-radius: 2px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.login-submit:hover {
    opacity: .8;
}

.forget_password_button_wrapper {
    text-align: right;
    margin-top: 16px;
}

.forget_password_button {
    display: inline-block;
    padding-bottom: 4px;
    padding-right: 24px;
    font-size: 12px;
    text-decoration: none;
    color: #088dcd;
    border-bottom: 1px solid #088dcd;
    position: relative;
}

.forget_password_button::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 40%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #088dcd;
    border-right: 1px solid #088dcd;
    transform: translateY(-50%) rotate(45deg);
}