/* assets/css/style.css */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card-shadow {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    border-radius: 10px;
}

/* 密碼輸入框外層定位 */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 40px; /* 留空間給小眼睛 */
}

.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
}

.password-toggle-btn:focus {
    outline: none;
}

/* 照片預覽 */
.photo-preview {
    max-width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
    display: none;
}
