body {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #333;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3%;
    background: url('4.png') repeat;
    background-size: 200px 200px; /* 調整圖片大小至200px x 200px並連續填滿背景 */
}

.container {
    display: block; /* 顯示容器 */
    max-width: 500px;
        /* 設定欄位最小寬度為500px */
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px; /* 新增內距 */
    background-color: white; /* 設置白色背景 */
}

label {
    display: block;
    margin-bottom: 8px;
}

input,
select,
button {
    min-width: 400px; /* 設定欄位最小寬度為500px */
   
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

button {
    background-color: #5bb85e;
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px;
    font-size: 20px;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

button:hover {
    background-color: #5bb85e;
}

/* 在表單的按鈕上新增 disabled 的樣式 */
button:disabled {
    background-color: #d3d3d3; /* 灰色背景 */
    color: #808080; /* 灰色文字 */
    cursor: not-allowed; /* 禁止符號 */
}

.result {
    margin-top: 20px;
    font-weight: bold;
}