/* .password-reset-link {
    font-size: 1.0rem;
    color: #0c89c3;
    font-weight: bold;
    text-decoration: none;
}

.password-reset-link:hover {
    color: #00364f;
    text-decoration: underline;
} */

/* 密碼輸入框容器 */
.password-input-container {
    position: relative;
    display: inline-block;
    width: 300px;  /* 或者和其他輸入框一樣的寬度 */
}

/* 密碼輸入框 */
.password-input-container input[type="password"] {
    width: 100%;
    padding: 8px;
    padding-right: 35px;  /* 為眼睛圖示留空間 */
    box-sizing: border-box;
}

/* 眼睛圖示 */
.password-toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

/* 確保所有輸入框的寬度一致 */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 300px;  /* 或者您想要的寬度 */
    box-sizing: border-box;
}

/* 表單段落樣式 */
form p {
    margin-bottom: 1em;
}