body {
    font-family : 游ゴシック;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    width: 25%;
    padding: 15px 50px 15px 50px;
    border-radius: 20px;
    border: 1px solid #bfbfbf;
}

.login-container h2 {
    text-align: center;
    margin: 8px;
}

.input-container {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    position: relative;
}

.input-container label {
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 10px;
    margin-left: 12px;
    color: #7f7f7f;
    font-size: 15px;
}

.input-container input {
    padding: 10px;
    border: 0px;
    border-radius: 20px;
    outline: none;
    padding-left: 50px; /* Add padding for the icon */
    font-size: 16px;
    background-color: #d7e7f5 !important;
    height: 45px;
}

.input-container input:focus {
    border-color: #007bff;
}

.input-container .icon {
    position: absolute;
    left: 5px;
    top: 72%;
    transform: translateY(-50%);
    border: 4px solid white;
    border-radius: 50%;
    padding: 5px;
    background-color: white;
    color: grey;
}

.login-button {
    background-color: #5b9bd5;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-align: center; /* Center the text within the button */
    text-decoration: none;
    margin: 0 auto; /* Center the button horizontally within its container */
    display: block; /* Make the button a block-level element to center it horizontally */
    margin-top: 35px;
    width: 35%;
}

.login-button:hover {
    background-color: #0056b3;
}

.link-div {
    text-align: right; /* Align the link to the right */
    margin-top: 20px;
    font-size: 11px;
    font-weight: bold;
    width: 119%;
    margin-left: -9%;
    margin-bottom: 7px;
}

.link-div a {
    color: #4472c4 !important;
}

@media (max-width: 480px) {
    .login-container {
        width: 90%; /* Adjust the container width for small screens */
    }

    .input-container input {
        padding-left: 50px; /* Reduce the left padding for small screens */
    }
}
/*20250401 パスワード修正 ス、トン　add Start*/
.passwordMarking {
    -webkit-text-security: disc;
}

.toggle-icon{
    position: absolute;
    top: 60%;
    left: 90%;
}
.hide{
    display: none;
}
/*20250401 パスワード修正 ス、トン　add End*/