:root {
    --bg-color: #F7F5F0;
    --text-color: #5C4d42;
    --primary-color: #D4A373;
    --secondary-color: #E9EDC9;
    --accent-color: #FAEDCD;
    --border-radius: 12px;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(92, 77, 66, 0.08);
    width: 100%;
    max-width: 400px;
}

h1 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.form-group { margin-bottom: 20px; }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

input[type="text"],
input[type="password"],
input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: var(--border-radius);
    box-sizing: border-box;
    background-color: var(--bg-color);
    transition: all 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.3);
}

button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover { background-color: #b58555; }

.error { color: #d9534f; background: #fdf7f7; padding: 10px; border-radius: 8px; font-size: 0.9rem; margin-bottom: 20px; }
.info-card { background: var(--accent-color); padding: 20px; border-radius: 8px; margin-bottom: 20px; }
.info-card p { margin: 10px 0; font-size: 1.1rem; }
.info-card strong { color: var(--primary-color); }

