#top .page-access-form {
    max-width: 560px;
    margin: 40px auto;
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

#top .page-access-form p {
    margin: 0 0 20px;
}

#top .page-access-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

#top .page-access-form input[type="text"] {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    font-size: 16px;
    transition: all .2s ease;
}

#top .page-access-form input[type="text"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

#top .page-access-form label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

#top .page-access-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

#top .page-access-form button {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

#top .page-access-form button:hover {
    transform: translateY(-1px);
    opacity: .95;
}

#top .page-access-form button:active {
    transform: translateY(0);
}

@media (max-width: 640px) {
    #top .page-access-form {
        margin: 20px;
        padding: 24px;
    }
}