body {
    min-height: 100vh;
}

.sticky-bottom {
    position: sticky;
    top: 100vh;
    z-index: 1020;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 上寄せ */
    align-items: center;
    /*height: 100vh;*/
    padding-top: 30px;
}

.footer {
    padding: 5px 0 5px 0;
    background: rgb(242 242 242);
    margin-top: 10px;
    color: #666;
}

.logo-left {
    align-self: flex-start;
}
.logo-right {
    align-self: flex-end;
}
.logo-center {
    align-self: center;
}

.form-container {
    text-align: center; /* 子要素を中央寄せ */
}
.form-control {
    font-size: 0.95rem; /* 長い文字列だと見切れるので少し小さく */
    border-radius: 30px; /* 丸みを帯びた形にする */
    padding-left: 20px;
    width: 400px;
    display: block; /* ブロック要素にする */
    margin: 0 auto; /* 左右のマージンを自動設定して中央寄せ */
}

.password-info {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    margin-bottom: 20px;
    text-align: center; /* 中央寄せ */
}
.button-container {
    width: 100%;
    display: flex;
    justify-content: center;/**flex-end;右寄せ*/
}
h2.title {
    margin-bottom: 40px;
    font-size: 1.25rem;
    color: #333;
}
p.description {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.table-no-border {
    border: none; /* ボーダーをなしにする */
}
.table-no-border th, .table-no-border td {
    border: none; /* セルのボーダーをなしにする */
}
.table-no-border th,td {
    min-width: 200px; /* 最小幅を50%に設定 */
    font-size: 0.9rem;
    /**color: #666;*/
}

img.info {
    margin-right: 5px;
}

.password-toggle-icon {
    position: absolute;
    right: 10px;
    top: 8px; /* アイコンを上寄せに調整 */
    transform: translateY(0); /* 垂直位置を上寄せに変更 */
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.password-toggle-icon-invalid {
    position: absolute;
    right: 35px;
    top: 8px; /* アイコンを上寄せに調整 */
    transform: translateY(0); /* 垂直位置を上寄せに変更 */
    cursor: pointer;
    width: 20px;
    height: 20px;
}

input[type="password"]::-ms-reveal {
    display: none;
}


div.w400 {
    width: 400px;
}

div.text-left {
    text-align: left;
}

/** スピナー */
div.loading-back {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}