@charset "utf-8";

/*********************************************
    ログインCSS
*********************************************/
.login-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: rgb(94, 104, 124);
}

.login-container > header
,.login-container > footer {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    color: var(--color-white);
}

.login-container button {
    font-size: 16px;
}

/*********************************************
    ヘッダー
*********************************************/
.login-container > header {
    min-height: var(--height-header);
}

.login-container > header > h1 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.3em;
}

/*********************************************
    中央コンテナー
*********************************************/
.login-container > main {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 80px;
}

/*********************************************
    ログインフォーム
*********************************************/
.form-container {
    padding: 50px 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 1px 1px 5px 2px rgb(53, 53, 53);
}

.form-container form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-width: 500px;
    min-height: 250px;
}

.form-container form > div {
    width: 80%;
}

/*********************************************
    ログインフォーム　エラー
*********************************************/
.form-container .error {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 13px;
    border-radius: 5px;
    color: white;
    background-color: tomato;
}

.form-container .error li {
    padding: 5px 0px;
}

/*********************************************
    ログインフォーム　メールアドレス/パスワード入力欄
*********************************************/
.form-container .input-container .row {
    text-align: center;
    margin-bottom: 35px;
}

.form-container .input-container .row input {
    text-align: left;
    width: 100%;
}

/*********************************************
    ログインフォーム　下部エリア
*********************************************/
.form-container .bottom-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/*********************************************
    ログインフォーム　ログインボタン
*********************************************/
.form-container .bottom-container .button-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.form-container .bottom-container .button-container button {
    width: 100%;
    min-height: 50px;
}

/*********************************************
    ログインフォーム　リンク
*********************************************/
.form-container .bottom-container .forgot {
    margin-top: 15px;
    padding: 5px;
    text-align: center;
}

.form-container .bottom-container .forgot a {
    font-size: 15px;
    color: var(--color-blue);
    text-decoration: underline;
}

.form-container .bottom-container .forgot a:hover {
    font-weight: bold;
}

/*********************************************
    フッター
*********************************************/
.login-container > footer {
    min-height: var(--height-footer);
}

.login-container > footer > div {
    flex: 1;
}

.login-container > footer > div:first-child {
    text-align: left;
}

.login-container > footer > div:last-child {
    text-align: right;
}