﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 思源黑體, 微軟正黑體, 蘋方黑體, 華康麗黑體, Helvetica, Arial, sans-serif, serif;
}

html, body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fc;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
}

.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.app-logo {
    display: block;
    margin: 0px auto;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

h2 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
}

p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.terms {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    font-size: 16px;
}

    .terms a {
        color: #a47764;
        text-decoration: none;
        margin-left: 5px;
    }

.button {
    background-color: #a47464;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    color: white;
    transition-duration: 0.3s;
}
    .button:hover {
        background-color: #8b645a;
        border-color: #8b645a;
        font-weight: bold;
    }

    .button:disabled {
        background-color: #d6c1b7;
        cursor: not-allowed;
    }

@media (max-width: 768px) {
    .container {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .content {
        padding: 10px;
        margin-top: 60px; /* 原本 80px，縮小為 60px */
    }

    .container {
        padding: 15px;
    }
}