* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100%;
    background: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.access-password-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.access-password-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.access-password-logo {
    text-align: center;
    margin-bottom: 20px;
}

.access-password-logo img {
    height: 40px;
    width: auto;
}

.access-password-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 8px;
}

.access-password-desc {
    font-size: 14px;
    color: #888;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 24px;
}

.access-password-field {
    margin-bottom: 16px;
}

.access-password-input {
    width: 100%;
    height: 48px;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 0 18px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.access-password-input:focus {
    border-color: #008aff;
}

.access-password-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 24px;
    background: #008aff;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.access-password-btn:active {
    opacity: 0.9;
}
