.loginContainer{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #1A1A1A;
}

.loginHeader{
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    min-height: 60px;
    width: 100%;
    border-bottom: 5px solid #FF7C00;
}

.loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    width: 40%;
    margin: 50px;
    border-radius: 3px;
    border: 2px solid white;
    background-color: transparent;
}

/* タブレットサイズ以下の場合に幅を90%にする */
@media screen and (max-width: 768px) {
    .loginForm {
        width: 90%;
        margin: 20px auto; /* 画面中央に寄せる場合は左右auto */
    }
}

#id_username, #id_password{
    height: 40px;
    border-radius: 1px;
    border: 1px solid rgb(2,0,36);
    font-size: 15px;
    margin: 0 auto 10px auto; /* ← 左右を自動で中央に */
    width:100%;
}

#id_password{
    margin-bottom: 40px;
}

.accountWrapper{
    padding: 10px 20px 20px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.accountWrapper p{
    color: white;
    margin: 0;
    padding: 0;
}
.inputWrapper {
    position: relative;
    width: 90%;
    margin: 0 auto 10px auto;
}

.inputWrapper input {
    width: 90%;
    height: 40px;
    font-size: 15px;
    border-radius: 3px;
    border: 1px solid #ccc;
    padding-right: 40px; /* 目アイコン分の余白 */
    box-sizing: border-box;
}

/* 👁️ アイコン */
.inputWrapper i {
    position: absolute;
    right: 12px;
    top: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    color: #555; /* 白背景で見やすい濃いグレー */
    transition: color 0.2s ease;
}

.inputWrapper i:hover {
    color: #000; /* hover時に強調 */
}

