body {
    background-color: #f5f5f5;
    font-size: 14px;
    min-height: 100vh; /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
}

.content-wrapper {
    width: 470px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 50px 0 50px 0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* システムロゴ */
.logo {
    display: flex;
    justify-content: center;
}

/* ログインフォーム */
#login-form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#login-form-wrapper form {
    position: relative;
}

#login-form-wrapper .form-block input {
    width: 370px;
    height: 50px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    margin-bottom: 30px;
}

.form-block {
    position: relative;
}

.form-block input:focus {
    outline: none;
}

.form-block label {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 14px;
    color: #959595;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.15s ease;
}

/* フォーカスされた時 */
.form-block label.focus {
    top: -8px;
    left: 15px;
    font-size: 12px;
}

.form-block input.focus {
    border: 2px solid #1e73d7 !important;
}

/* 認証エラーの時 */
.form-block label.error {
    color: #ff7f6e;
}

.form-block input.error {
    border: 2px solid #ff7f6e !important;
}

.input-form {
    padding-left: 20px;
}

/* パスワードの表示・非表示の切り替えアイコン */
.display-password {
    position: absolute;
    top: 17px;
    right: 30px;
    cursor: pointer;
}

/* バリデーションメッセージ */
.error-message {
    position: relative;
    margin-bottom: 30px;
}

.error-message .text {
    color: #ff7f6e;
    position: absolute;
    bottom: -1px;
}

/* ボタン */
.login-btn {
    width: 370px;
    height: 52px;
    color: #ffffff;
    background: #1e73d7;
    border: none;
    border-radius: 100px;
    font-size: 16px;
}

/* ローディングアイコン */
.loading-icon {
    position: absolute;
    bottom: 15px;
    left: 178px;
    color: #ffffff;
    font-size: 20px;
    display: none;
}
