@charset "utf-8";

html,
body {
    height: 100vh;
    margin: 0;
    padding: 0;
}
/*ログイン画面全体設定*/
.loginpage {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*ログイン画面を中央揃え*/
.login {
    text-align: center;
}

/*ログインボタンの色設定*/
.button {
    background-color: black;
    color: aliceblue;
}
/*フォームラベル*/
.login label {
    margin-right: 21px;
}
.login_form_input {
    margin-bottom: 16px; /*ログインとパスワードのくっつきを無くす*/
    padding-right: 60px; /*入力場所の調整*/
}
/*ログインIDの入力幅指定*/
input[type="text"] {
    height: 25px;
}
/*パスワードの入力幅指定*/
input[type=password] {
    height: 25px;
}
/*帳票出力システムの文字の大きさ*/
.rogo {
    font-size: 24px;
}