body {
    background-color: #eaf6ff;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin: 0;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.08);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 25px;
    font-size: 24px;
    letter-spacing: 0.5px;
}

label {
    font-weight: 600;
    margin-top: 12px;
    display: block;
    color: #333;
    font-size: 15px;
}

input {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ccd4e0;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

button {
    width: 100%;
    background-color: #007bff;
    border: none;
    color: white;
    padding: 14px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

p {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #444;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* ✅ 响应式优化 (手机) */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .container {
        padding: 20px;
        border-radius: 10px;
    }

    h2 {
        font-size: 20px;
    }

    input,
    button {
        font-size: 15px;
        padding: 12px;
    }

    label {
        font-size: 14px;
    }

    p {
        font-size: 13px;
    }
}
