@charset "utf-8";

/*********************************************
    パスワードリセットCSS
*********************************************/
.password-reset-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: rgb(94, 104, 124);
}

.password-reset-container > header
,.password-reset-container > footer {
    width: 100%;
    padding: 0 15px;
    color: var(--color-white);
}

.password-reset-container > footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

/*********************************************
    ヘッダー
*********************************************/
.password-reset-container > header {
    display: flex;
    align-items: center;
    min-height: var(--height-header);
}

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

/*********************************************
    中央コンテナー
*********************************************/
.password-reset-container > main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/*********************************************
    フォーム
*********************************************/
.form-container {
    padding: 50px 15px;
    width: 80%;
    max-width: 700px;
    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;
}

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

.info {
    margin-bottom: 15px;
    width: 80%;
    max-width: 700px;
    padding: 15px;
    border-radius: 5px;
    color: white;
    background-color: lightseagreen;
    line-height: 25px;
}

/*********************************************
    フォーム　エラー
*********************************************/
.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 {
    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;
}

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

.password-reset-container > footer > div {
    padding: 5px 0;
    text-align: center;   
}

@media screen and (max-width: 700px) {
    .password-reset-container > footer > div {
        width: 100%;
        text-align: center;
    }
}